Skip to content
Snippets Groups Projects

Fix: Apply all migrations

Merged m.nabywaniec requested to merge 76-apply-all-migrations into master
All threads resolved!
2 files
+ 6
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -27,8 +27,8 @@ import FileUtils
import shutil
class Migration(MigrationBase):
def __init__(self, silecsDocument, xmlSchema, versionOld, versionNew):
super(Migration, self).__init__(silecsDocument, xmlSchema, versionOld, versionNew)
def __init__(self, silecsDocument, xmlSchema, versionOld, versionNew, createBackup):
super(Migration, self).__init__(silecsDocument, xmlSchema, versionOld, versionNew, createBackup)
def migrateClass(self, context, projectDir ):
modified = False
Loading