misc/migration/2.99.0_Any.py
author sylvain.thenault@logilab.fr
Sat, 04 Apr 2009 13:21:56 +0200
changeset 1230 232e16835fff
parent 176 312024cbe717
child 1398 5fe84a5f7035
permissions -rw-r--r--
fix constant handling in sourcesterms + minor cleanup

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),
               ask_confirm=False):
    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}, ask_confirm=False)
    print 'renamed', pk, 'to', newk

add_entity_type('ECache')