bring back transaction_id index when adding back transaction_id column

This commit is contained in:
Taka Goto 2019-01-23 10:24:18 -06:00
parent 005576572f
commit b6baa106cc

View File

@ -3,6 +3,8 @@ BEGIN;
ALTER TABLE receipts
ADD COLUMN transaction_id INT;
CREATE INDEX transaction_id_index ON receipts (transaction_id);
UPDATE receipts
SET transaction_id = (
SELECT id FROM transactions WHERE transactions.hash = receipts.tx_hash
@ -20,4 +22,4 @@ ON DELETE CASCADE;
ALTER TABLE receipts
DROP COLUMN block_id;
COMMIT;
COMMIT;