Created
April 2, 2015 20:23
-
-
Save natea/d03d77d56308ea3fd615 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
edxapp@precise64:~/edx-platform$ python manage.py lms syncdb --migrate --settings devstack | |
Syncing... | |
Creating tables ... | |
Installing custom SQL ... | |
Installing indexes ... | |
Installed 0 object(s) from 0 fixture(s) | |
Migrating... | |
Traceback (most recent call last): | |
File "manage.py", line 116, in <module> | |
execute_from_command_line([sys.argv[0]] + django_args) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line | |
utility.execute() | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 382, in execute | |
self.fetch_command(subcommand).run_from_argv(self.argv) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/base.py", line 196, in run_from_argv | |
self.execute(*args, **options.__dict__) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/base.py", line 232, in execute | |
output = self.handle(*args, **options) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/base.py", line 371, in handle | |
return self.handle_noargs(**options) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/management/commands/syncdb.py", line 99, in handle_noargs | |
management.call_command('migrate', **options) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 150, in call_command | |
return klass.execute(*args, **defaults) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/django/core/management/base.py", line 232, in execute | |
output = self.handle(*args, **options) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/management/commands/migrate.py", line 108, in handle | |
ignore_ghosts = ignore_ghosts, | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/migration/__init__.py", line 193, in migrate_app | |
applied_all = check_migration_histories(applied_all, delete_ghosts, ignore_ghosts) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/migration/__init__.py", line 74, in check_migration_histories | |
m = h.get_migration() | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/models.py", line 34, in get_migration | |
return self.get_migrations().migration(self.migration) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/models.py", line 31, in get_migrations | |
return Migrations(self.app_name) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/migration/base.py", line 61, in __call__ | |
self.instances[app_label] = super(MigrationsMetaclass, self).__call__(app_label_to_app_module(app_label), **kwds) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/migration/base.py", line 89, in __init__ | |
self.set_application(application, force_creation, verbose_creation) | |
File "/edx/app/edxapp/venvs/edxapp/local/lib/python2.7/site-packages/south/migration/base.py", line 161, in set_application | |
raise exceptions.NoMigrations(application) | |
south.exceptions.NoMigrations: Application '<module 'util' from '/edx/app/edxapp/edx-platform/common/djangoapps/util/__init__.pyc'>' has no migrations. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment