This commit is contained in:
blitzmann
2015-02-07 21:15:23 -05:00
parent 7b8bb79cbe
commit ef62f102bc
4 changed files with 41 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
"""
Migration 5
Simply deletes damage profiles with a blank name. See GH issue #256
"""
def upgrade(saveddata_engine):
saveddata_engine.execute('DELETE FROM damagePatterns WHERE name LIKE ?', ("",))