misc/migration/3.10.4_Any.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Mon, 25 Oct 2010 15:30:50 +0200
changeset 6621 11c09415078b
parent 6608 1a76045d093d
child 6679 7f2735c48653
permissions -rw-r--r--
[migration] stupid typo, cw_source still not properly set

for eschema in schema.entities():
    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) '
    'SELECT e.eid,s.cw_eid FROM entities as e, cw_CWSource as s '
    'WHERE s.cw_name=e.source AND NOT EXISTS(SELECT 1 FROM cw_source_relation WHERE eid_from=e.eid AND eid_to=s.cw_eid)')
commit()