Advertisement
Guest User

Untitled

a guest
Oct 26th, 2012
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. mirkocrocop@Mirkos-MacBook-Pro:~/workspace/toastdriven$ python manage.py migrate polls
  2. Running migrations for polls:
  3. - Migrating forwards to 0011_auto__add_field_poll_question__add_field_poll_pub_date.
  4. > polls:0003_auto__add_field_poll_question__add_field_poll_pub_date
  5. Traceback (most recent call last):
  6. File "manage.py", line 10, in <module>
  7. execute_from_command_line(sys.argv)
  8. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line
  9. utility.execute()
  10. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/__init__.py", line 382, in execute
  11. self.fetch_command(subcommand).run_from_argv(self.argv)
  12. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/base.py", line 196, in run_from_argv
  13. self.execute(*args, **options.__dict__)
  14. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/core/management/base.py", line 232, in execute
  15. output = self.handle(*args, **options)
  16. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/management/commands/migrate.py", line 108, in handle
  17. ignore_ghosts = ignore_ghosts,
  18. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/__init__.py", line 213, in migrate_app
  19. success = migrator.migrate_many(target, workplan, database)
  20. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 235, in migrate_many
  21. result = migrator.__class__.migrate_many(migrator, target, migrations, database)
  22. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 310, in migrate_many
  23. result = self.migrate(migration, database)
  24. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 133, in migrate
  25. result = self.run(migration)
  26. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 106, in run
  27. dry_run.run_migration(migration)
  28. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 191, in run_migration
  29. self._run_migration(migration)
  30. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 178, in _run_migration
  31. raise exceptions.FailedDryRun(migration, sys.exc_info())
  32. south.exceptions.FailedDryRun: ! Error found during dry run of '0003_auto__add_field_poll_question__add_field_poll_pub_date'! Aborting.
  33. Traceback (most recent call last):
  34. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 175, in _run_migration
  35. migration_function()
  36. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/migration/migrators.py", line 57, in <lambda>
  37. return (lambda: direction(orm))
  38. File "/Users/mirkocrocop/workspace/toastdriven/polls/migrations/0003_auto__add_field_poll_question__add_field_poll_pub_date.py", line 19, in forwards
  39. keep_default=False)
  40. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/sqlite3.py", line 31, in add_column
  41. field.column: self._column_sql_for_create(table_name, name, field, False),
  42. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/sqlite3.py", line 189, in _column_sql_for_create
  43. sql = self.column_sql(table_name, name, field, with_name=False, field_prepared=True)
  44. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/south/db/generic.py", line 688, in column_sql
  45. default = field.get_db_prep_save(default, connection=self._get_connection())
  46. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 292, in get_db_prep_save
  47. prepared=False)
  48. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 816, in get_db_prep_value
  49. value = self.get_prep_value(value)
  50. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 801, in get_prep_value
  51. value = self.to_python(value)
  52. File "/Users/mirkocrocop/.virtualenvs/toastdriven/lib/python2.7/site-packages/django/db/models/fields/__init__.py", line 785, in to_python
  53. raise exceptions.ValidationError(msg)
  54. ValidationError: [u"'0' value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] format."]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement