Skip to content

Commit

Permalink
SQL to drop columns for protocol 22 release
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikiyer56 committed Sep 30, 2024
1 parent f295e4d commit b4d4edc
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
-- + migrate Up

ALTER TABLE exp_asset_stats
DROP COLUMN num_accounts,
DROP COLUMN amount;

-- + migrate Down
ALTER TABLE exp_asset_stats
ADD COLUMN num_accounts INTEGER DEFAULT 0,
ADD COLUMN amount VARCHAR DEFAULT '';

0 comments on commit b4d4edc

Please sign in to comment.