class Migration(SchemaMigration):
+ depends_on = (
+ ('courses', '0001_initial'),
+ )
+
def forwards(self, orm):
# Adding model 'RawDocument'
db.create_table('document_upload_rawdocument', (
}
}
- complete_apps = ['document_upload']
\ No newline at end of file
+ complete_apps = ['document_upload']
class Migration(SchemaMigration):
+ depends_on = (
+ ('courses', '0001_initial'),
+ )
+
def forwards(self, orm):
# Adding model 'Note'
db.create_table('notes_note', (
}
}
- complete_apps = ['notes']
\ No newline at end of file
+ complete_apps = ['notes']
class Migration(SchemaMigration):
+ depends_on = (
+ ('users', '0001_initial'),
+ )
+
def forwards(self, orm):
# Adding field 'Note.user'
db.add_column('notes_note', 'user',
}
}
- complete_apps = ['notes']
\ No newline at end of file
+ complete_apps = ['notes']