cubicweb/misc/migration/3.17.11_Any.py
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Thu, 16 Jun 2016 15:53:01 +0200
changeset 11279 e4f11ef1face
parent 11057 0b59724cb3f2
permissions -rw-r--r--
backport 3.22 changes

for table, column in [
        ('transactions', 'tx_time'),
        ('tx_entity_actions', 'tx_uuid'),
        ('tx_relation_actions', 'tx_uuid')]:
    repo.system_source.create_index(session, table, column)

commit()