Skip to content

Commit

Permalink
stores: fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisSchinnerl committed Aug 21, 2024
1 parent aeab86d commit b2ff8d2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ALTER TABLE `wallets` ADD COLUMN `immature_lo` BIGINT NOT NULL, ADD COLUMN `immature_hi` BIGINT NOT NULL;
ALTER TABLE `wallets` ADD COLUMN `immature_lo` BIGINT DEFAULT 0;
ALTER TABLE `wallets` ADD COLUMN `immature_hi` BIGINT DEFAULT 0;
CREATE INDEX `idx_wallets_immature` ON `wallets`(`immature_lo`,`immature_hi`);

0 comments on commit b2ff8d2

Please sign in to comment.