# HG changeset patch # User Sylvain Thénault # Date 1287764809 -7200 # Node ID 1a76045d093dfae8f0ff9e50f61736ab66c75c58 # Parent 29f3e4b3112507c215ba597cd0397592682b259e [migration] skip final entity types diff -r 29f3e4b31125 -r 1a76045d093d misc/migration/3.10.4_Any.py --- a/misc/migration/3.10.4_Any.py Fri Oct 22 18:22:57 2010 +0200 +++ b/misc/migration/3.10.4_Any.py Fri Oct 22 18:26:49 2010 +0200 @@ -1,5 +1,5 @@ for eschema in schema.entities(): - if not 'cw_source' in eschema.subjrels: + if not (eschema.final or 'cw_source' in eschema.subjrels): add_relation_definition(eschema, 'cw_source', 'CWSource') sql('INSERT INTO cw_source_relation(eid_from, eid_to) '