misc/migration/2.99.0_Any.py
author Sylvain Thenault <sylvain.thenault@logilab.fr>
Tue, 25 Nov 2008 12:33:26 +0100
changeset 138 ed8a7efaadb6
parent 113 misc/migration/3.0.0_Any.py@1091d8d63f51
child 176 312024cbe717
permissions -rw-r--r--
trigger 3.0 migration for beta versions

from cubicweb import CW_MIGRATION_MAP

for pk, in rql('Any K WHERE X is EProperty, X pkey IN (%s), X pkey K'
              % ','.join("'system.version.%s'" % cube for cube in CW_MIGRATION_MAP)):
    cube = pk.split('.')[-1]
    newk = pk.replace(cube, CW_MIGRATION_MAP[cube])
    rql('SET X pkey %(newk)s WHERE X pkey %(oldk)s',
        {'oldk': pk, 'newk': newk})
    print 'renamed', pk, 'to', newk

add_entity_type('ECache')