[migration] cwunique constraint schema fix must be done in bootstrap migration stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 26 Jan 2011 11:39:21 +0100
branchstable
changeset 6896 784d5df35af1
parent 6895 32eb31855196
child 6897 858faaf699d9
[migration] cwunique constraint schema fix must be done in bootstrap migration
misc/migration/3.10.7_Any.py
misc/migration/bootstrapmigration_repository.py
--- a/misc/migration/3.10.7_Any.py	Wed Jan 26 10:50:38 2011 +0100
+++ b/misc/migration/3.10.7_Any.py	Wed Jan 26 11:39:21 2011 +0100
@@ -1,9 +1,2 @@
-if not ('CWUniqueTogetherConstraint', 'CWRType') in schema['relations'].rdefs:
-    add_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWRType')
-    rql('SET C relations RT WHERE C relations RDEF, RDEF relation_type RT')
-    commit()
-    drop_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWAttribute')
-    drop_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWRelation')
-
 add_attribute('TrInfo', 'tr_count')
 sync_schema_props_perms('TrInfo')
--- a/misc/migration/bootstrapmigration_repository.py	Wed Jan 26 10:50:38 2011 +0100
+++ b/misc/migration/bootstrapmigration_repository.py	Wed Jan 26 11:39:21 2011 +0100
@@ -97,6 +97,14 @@
 if applcubicwebversion < (3, 9, 6) and cubicwebversion >= (3, 9, 6):
     add_entity_type('CWUniqueTogetherConstraint')
 
+if not ('CWUniqueTogetherConstraint', 'CWRType') in schema['relations'].rdefs:
+    add_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWRType')
+    rql('SET C relations RT WHERE C relations RDEF, RDEF relation_type RT')
+    commit()
+    drop_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWAttribute')
+    drop_relation_definition('CWUniqueTogetherConstraint', 'relations', 'CWRelation')
+
+
 if applcubicwebversion < (3, 4, 0) and cubicwebversion >= (3, 4, 0):
 
     with hooks_control(session, session.HOOKS_ALLOW_ALL, 'integrity'):