# HG changeset patch # User Alexandre Fayolle # Date 1308574339 -7200 # Node ID 86e9632a4e9c0f8e4414f01b608c7340ae0aeff5 # Parent 55b1378e935739d4bf0ca8fe35cbc51939e3c356 fix 3.13.0 migration script (closes #1766202) diff -r 55b1378e9357 -r 86e9632a4e9c misc/migration/3.13.0_Any.py --- a/misc/migration/3.13.0_Any.py Tue Jun 21 10:44:43 2011 +0200 +++ b/misc/migration/3.13.0_Any.py Mon Jun 20 14:52:19 2011 +0200 @@ -1,3 +1,4 @@ sync_schema_props_perms('cw_source', syncprops=False) add_attribute('CWSource', 'synchronizing') -add_entity_type('BigInt') +if schema['BigInt'].eid is None: + add_entity_type('BigInt')