Commit 1ce440a2 authored by Michal Čihař's avatar Michal Čihař

Missing dependency (issue #482)

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent ae22dfde
...@@ -23,6 +23,10 @@ from south.v2 import SchemaMigration ...@@ -23,6 +23,10 @@ from south.v2 import SchemaMigration
class Migration(SchemaMigration): class Migration(SchemaMigration):
depends_on = (
('lang', '0003_auto__add_field_language_plural_type'),
)
def forwards(self, orm): def forwards(self, orm):
# Adding field 'Profile.subscribe_new_language' # Adding field 'Profile.subscribe_new_language'
db.add_column(u'accounts_profile', 'subscribe_new_language', db.add_column(u'accounts_profile', 'subscribe_new_language',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment