forked from 0x2620/pandora
fix inital database creation
This commit is contained in:
parent
ab9b5adc92
commit
5392750348
5 changed files with 58 additions and 12 deletions
|
|
@ -6,6 +6,10 @@ from django.db import models
|
|||
|
||||
|
||||
class Migration(SchemaMigration):
|
||||
depends_on = (
|
||||
("item", "0001_initial"),
|
||||
("clip", "0001_initial"),
|
||||
)
|
||||
|
||||
def forwards(self, orm):
|
||||
# Adding model 'Annotation'
|
||||
|
|
@ -179,4 +183,4 @@ class Migration(SchemaMigration):
|
|||
}
|
||||
}
|
||||
|
||||
complete_apps = ['annotation']
|
||||
complete_apps = ['annotation']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue