class Migration(SchemaMigration):
+ depends_on = (
+ ('users', '0001_initial'),
+ )
+
def forwards(self, orm):
# Adding field 'RawDocument.user'
db.add_column('document_upload_rawdocument', 'user',
}
}
- complete_apps = ['document_upload']
\ No newline at end of file
+ complete_apps = ['document_upload']
class Migration(SchemaMigration):
+ depends_on = (
+ ('notes', '0012_auto__add_unique_note_upstream_link__add_unique_note_gdrive_url__add_u'),
+ ('document_upload', '0002_auto__add_field_rawdocument_user'),
+ )
+
def forwards(self, orm):
# This should not be done here, but there is already a migration in
# Notes which relies on this migration. So this must be done here.