Django South migration error

I get an error trying to apply the first migration of the South. I tried various suggestions (for example, delete .pyc files in the migration folder, convert the application, and also try to restart it, other scripts). Can anyone suggest here what I can do? Thanks

(env)~/code/django/ssc/dev/ssc/ssc> python manage.py migrate Traceback (most recent call last): File "manage.py", line 10, in <module> execute_from_command_line(sys.argv) File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 443, in execute_from_command_line utility.execute() File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 382, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 196, in run_from_argv self.execute(*args, **options.__dict__) File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 232, in execute output = self.handle(*args, **options) File "/usr/local/lib/python2.7/dist-packages/south/management/commands/migrate.py", line 108, in handle ignore_ghosts = ignore_ghosts, File "/usr/local/lib/python2.7/dist-packages/south/migration/__init__.py", line 166, in migrate_app Migrations.calculate_dependencies() File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 228, in calculate_dependencies migration.calculate_dependencies() File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 362, in calculate_dependencies for migration in self._get_dependency_objects("depends_on"): File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 342, in _get_dependency_objects for app, name in getattr(self.migration_class(), attrname, []): File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 314, in migration_class return self.migration().Migration AttributeError: 'module' object has no attribute 'Migration' (env)~/code/django/ssc/dev/ssc/ssc> python manage.py convert_to_south crewcal This application is already managed by South. (env)~/code/django/ssc/dev/ssc/ssc> python manage.py migrateTraceback (most recent call last): File "manage.py", line 10, in <module> execute_from_command_line(sys.argv) File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 443, in execute_from_command_line utility.execute() File "/usr/local/lib/python2.7/dist-packages/django/core/management/__init__.py", line 382, in execute self.fetch_command(subcommand).run_from_argv(self.argv) File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 196, in run_from_argv self.execute(*args, **options.__dict__) File "/usr/local/lib/python2.7/dist-packages/django/core/management/base.py", line 232, in execute output = self.handle(*args, **options) File "/usr/local/lib/python2.7/dist-packages/south/management/commands/migrate.py", line 108, in handle ignore_ghosts = ignore_ghosts, File "/usr/local/lib/python2.7/dist-packages/south/migration/__init__.py", line 166, in migrate_app Migrations.calculate_dependencies() File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 228, in calculate_dependencies migration.calculate_dependencies() File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 362, in calculate_dependencies for migration in self._get_dependency_objects("depends_on"): File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 342, in _get_dependency_objects for app, name in getattr(self.migration_class(), attrname, []): File "/usr/local/lib/python2.7/dist-packages/south/migration/base.py", line 314, in migration_class return self.migration().Migration AttributeError: 'module' object has no attribute 'Migration' 
+8
source share
3 answers

In my case, the AttributeError: 'module' object does not have an attribute. The "Migration" error was simply a matter of having an additional .py file in my migration folder.

I had an additional utilities module in my migration directory that made Yuka suffocate. Moving the module to another directory (above my application migration directory) solved the problem for me.

+17
source

Maybe a little late, but still ... Is it possible that you have another package (folder with __init__.py ) in your migration package and it interferes with the structure?

+3
source

Wow. I got AttributeError: the 'module' object does not have a 'Migration' attribute error for a completely different reason than the answers above.

I had a bad indentation migration file:

 class Migration(SchemaMigration): def forwards(self, orm): # def backwards(self, orm): # models = {...} 

Unlike...

 class Migration(SchemaMigration): def forwards(self, orm): # def backwards(self, orm): # models = {...} 

I don’t know why I had this, but when I fixed it, the error disappeared.

0
source

All Articles