-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
91 deletions.
There are no files selected for viewing
10 changes: 9 additions & 1 deletion
10
rust/processor/migrations/2024-04-18-173631_fungible_token/up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
-- Your SQL goes here | ||
ALTER TABLE fungible_asset_metadata | ||
ADD COLUMN supply_v2 NUMERIC, | ||
ADD COLUMN maximum_v2 NUMERIC; | ||
ADD COLUMN maximum_v2 NUMERIC; | ||
|
||
ALTER TABLE current_token_datas_v2 | ||
ALTER COLUMN supply DROP NOT NULL, | ||
ALTER COLUMN decimals DROP NOT NULL; | ||
|
||
ALTER TABLE token_datas_v2 | ||
ALTER COLUMN supply DROP NOT NULL, | ||
ALTER COLUMN decimals DROP NOT NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters