cubicweb/misc/migration/3.17.11_Any.py
author Elodie Thieblin <ethieblin@logilab.fr>
Wed, 18 Mar 2020 09:22:45 +0100
changeset 12921 1adf23942954
parent 11057 0b59724cb3f2
permissions -rw-r--r--
[doc] Add requirement for gettext and graphviz When running the tutorial from scratch, I had errors because these two packages were not installed.

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()