Since all the tables have been created earlier, the contents forward and backward of meeting/migrations/0001_initial.py is meaningless, but we need 'pass' instead for it to run. Fixed.
- Legacy-Id: 4504
This commit is contained in:
parent
5ebe0b1447
commit
1603cdab11
|
@ -7,7 +7,7 @@ from django.db import models
|
|||
class Migration(SchemaMigration):
|
||||
|
||||
def forwards(self, orm):
|
||||
|
||||
pass
|
||||
# Adding model 'Meeting'
|
||||
|
||||
# Adding model 'Room'
|
||||
|
@ -22,7 +22,7 @@ class Migration(SchemaMigration):
|
|||
|
||||
|
||||
def backwards(self, orm):
|
||||
|
||||
pass
|
||||
# Deleting model 'Meeting'
|
||||
|
||||
# Deleting model 'Room'
|
||||
|
|
Loading…
Reference in a new issue