misc/migration/3.17.11_Any.py
author Denis Laxalde <denis.laxalde@logilab.fr>
Wed, 25 Mar 2015 10:10:24 +0100
changeset 10276 ffb269e60348
parent 9463 d62e13eba033
permissions -rw-r--r--
[web/request] Restore attribute setting for search_state This was dropped in 1f84295bfe95 when `search_state` attribute was turned into a property, but without a setter. So adding a setter here restoring previous behaviour, as some tests and cubes use it. Related to #4875761.

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