Advertisement
Guest User

Untitled

a guest
Feb 12th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. [root@nocproject noc]# ./noc migrate fm
  2. /opt/noc/lib/python2.6/site-packages/django/utils/translation/__init__.py:63: DeprecationWarning: Translations in the project directory aren't supported anymore. Use the LOCALE_PATHS setting instead.
  3. DeprecationWarning)
  4. /opt/noc/lib/python2.6/site-packages/Crypto/Util/number.py:57: PowmInsecureWarning: Not using mpz_powm_sec. You should rebuild using libgmp >= 5 to avoid timing attack vulnerability.
  5. _warn("Not using mpz_powm_sec. You should rebuild using libgmp >= 5 to avoid timing attack vulnerability.", PowmInsecureWarning)
  6. Running migrations for fm:
  7. - Migrating forwards to 0040_no_refresh_config.
  8. > fm:0037_remove_old_tables
  9. DEBUG:south:south execute "DROP TABLE "fm_eventrepeat" CASCADE;" with params "[]"
  10. Traceback (most recent call last):
  11. File "manage.py", line 44, in <module>
  12. execute_from_command_line(sys.argv)
  13. File "/opt/noc/lib/python2.6/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line
  14. utility.execute()
  15. File "/opt/noc/lib/python2.6/site-packages/django/core/management/__init__.py", line 382, in execute
  16. self.fetch_command(subcommand).run_from_argv(self.argv)
  17. File "/opt/noc/lib/python2.6/site-packages/django/core/management/base.py", line 196, in run_from_argv
  18. self.execute(*args, **options.__dict__)
  19. File "/opt/noc/lib/python2.6/site-packages/django/core/management/base.py", line 232, in execute
  20. output = self.handle(*args, **options)
  21. File "/opt/noc/lib/python2.6/site-packages/south/management/commands/migrate.py", line 105, in handle
  22. ignore_ghosts = ignore_ghosts,
  23. File "/opt/noc/lib/python2.6/site-packages/south/migration/__init__.py", line 191, in migrate_app
  24. success = migrator.migrate_many(target, workplan, database)
  25. File "/opt/noc/lib/python2.6/site-packages/south/migration/migrators.py", line 221, in migrate_many
  26. result = migrator.__class__.migrate_many(migrator, target, migrations, database)
  27. File "/opt/noc/lib/python2.6/site-packages/south/migration/migrators.py", line 292, in migrate_many
  28. result = self.migrate(migration, database)
  29. File "/opt/noc/lib/python2.6/site-packages/south/migration/migrators.py", line 125, in migrate
  30. result = self.run(migration)
  31. File "/opt/noc/lib/python2.6/site-packages/south/migration/migrators.py", line 99, in run
  32. return self.run_migration(migration)
  33. File "/opt/noc/lib/python2.6/site-packages/south/migration/migrators.py", line 81, in run_migration
  34. migration_function()
  35. File "/opt/noc/fm/migrations/0037_remove_old_tables.py", line 14, in forwards
  36. db.delete_table("fm_eventrepeat")
  37. File "/opt/noc/lib/python2.6/site-packages/south/db/generic.py", line 249, in delete_table
  38. self.execute('DROP TABLE %s CASCADE;' % params)
  39. File "/opt/noc/lib/python2.6/site-packages/south/db/generic.py", line 150, in execute
  40. cursor.execute(sql, params)
  41. File "/opt/noc/lib/python2.6/site-packages/django/db/backends/postgresql_psycopg2/base.py", line 52, in execute
  42. return self.cursor.execute(query, args)
  43. django.db.utils.DatabaseError: table "fm_eventrepeat" does not exist
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement