Skip to content

Commit 1603cda

Browse files
committed
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
1 parent 5ebe0b1 commit 1603cda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/meeting/migrations/0001_initial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class Migration(SchemaMigration):
88

99
def forwards(self, orm):
10-
10+
pass
1111
# Adding model 'Meeting'
1212

1313
# Adding model 'Room'
@@ -22,7 +22,7 @@ def forwards(self, orm):
2222

2323

2424
def backwards(self, orm):
25-
25+
pass
2626
# Deleting model 'Meeting'
2727

2828
# Deleting model 'Room'

0 commit comments

Comments
 (0)