[Update] 修改settings

pull/2461/head
ibuler 2019-03-04 10:53:49 +08:00
parent e76392a169
commit 6004ef3f0d
1 changed files with 2 additions and 0 deletions

View File

@ -10,8 +10,10 @@ class Migration(migrations.Migration):
] ]
sql = "INSERT INTO setting(name, value, category, encrypted, enabled, comment) " \ sql = "INSERT INTO setting(name, value, category, encrypted, enabled, comment) " \
"SELECT name, value, category, encrypted, enabled, comment from settings" "SELECT name, value, category, encrypted, enabled, comment from settings"
rename_sql = "RENAME TABLE settings TO settings_bak"
settings_table_exist = 'settings' in connection.introspection.table_names() settings_table_exist = 'settings' in connection.introspection.table_names()
operations = [] operations = []
if settings_table_exist: if settings_table_exist:
operations.append(migrations.RunSQL(sql)) operations.append(migrations.RunSQL(sql))
operations.append(migrations.RunSQL(rename_sql))