diff -r aff75b69db92 -r 2c48c091b6a2 misc/migration/3.17.11_Any.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/misc/migration/3.17.11_Any.py Mon Jan 13 13:47:47 2014 +0100 @@ -0,0 +1,7 @@ +for table, column in [ + ('transactions', 'tx_time'), + ('tx_entity_actions', 'tx_uuid'), + ('tx_relation_actions', 'tx_uuid')]: + session.cnxset.source('system').create_index(session, table, column) + +commit()