misc/migration/bootstrapmigration_repository.py
changeset 10058 d47c318f95b2
parent 9708 b36bc18f6ef7
child 10074 ab956b780d4e
child 10270 1ae64186af94
--- a/misc/migration/bootstrapmigration_repository.py	Mon Nov 24 17:43:29 2014 +0100
+++ b/misc/migration/bootstrapmigration_repository.py	Mon Nov 24 11:49:28 2014 +0100
@@ -50,8 +50,14 @@
     session.commit()
 
 if applcubicwebversion < (3, 19, 0) and cubicwebversion >= (3, 19, 0):
-    sql('ALTER TABLE "entities" DROP COLUMN "mtime"')
-    sql('ALTER TABLE "entities" DROP COLUMN "source"')
+    try: 
+        # need explicit drop of the indexes on some database systems (sqlserver)
+        sql(repo.system_source.dbhelper.sql_drop_index('entities', 'mtime'))
+        sql('ALTER TABLE "entities" DROP COLUMN "mtime"')
+        sql('ALTER TABLE "entities" DROP COLUMN "source"')
+    except: # programming error, already migrated
+        print "Failed to drop mtime or source database columns"
+        print "'entities' table of the database has probably been already updated"
 
     commit()