1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00
phorge-phorge/resources/sql/patches/20130923.mrename.sql
epriestley 1d7cbe202f Rename "transactionpro" table to "transaction"
Summary: Ref T2217. Cleans up the table names. Moves old data to `maniphest_transaction_legacy`. We'll drop that eventually once it's more clear that I didn't break the world.

Test Plan: Did reads/writes to/from these tables.

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2217

Differential Revision: https://secure.phabricator.com/D7094
2013-09-24 10:49:16 -07:00

5 lines
235 B
SQL

ALTER TABLE {$NAMESPACE}_maniphest.maniphest_transaction
RENAME {$NAMESPACE}_maniphest.maniphest_transaction_legacy;
ALTER TABLE {$NAMESPACE}_maniphest.maniphest_transactionpro
RENAME {$NAMESPACE}_maniphest.maniphest_transaction;