forked from 0x2620/pandora
fix public_id migration for new installs
This commit is contained in:
parent
e8de7a71a1
commit
80fdfb5e38
1 changed files with 3 additions and 2 deletions
|
@ -13,8 +13,9 @@ class Migration(SchemaMigration):
|
|||
db.rename_column('item_item', 'itemId', 'public_id')
|
||||
|
||||
# Rename field 'ItemSort.itemId' to 'ItemSort.public_id'
|
||||
db.rename_column('item_itemsort', 'itemId', 'public_id')
|
||||
|
||||
itemsort = orm['item.ItemSort']
|
||||
if 'itemId' in [f.name for f in itemsort._meta.fields]:
|
||||
db.rename_column('item_itemsort', 'itemId', 'public_id')
|
||||
|
||||
def backwards(self, orm):
|
||||
|
||||
|
|
Loading…
Reference in a new issue