-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #844 from input-output-hk/nhenin/burn-roletokens
Burn roles tokens
- Loading branch information
Showing
138 changed files
with
8,613 additions
and
2,877 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
-- Deploy chain:scripts to pg | ||
-- requires: appschema | ||
|
||
BEGIN; | ||
|
||
-- NOTE this migration requires a reset of the entire database, as the chain | ||
-- needs to be re-synchronized. | ||
TRUNCATE chain.block CASCADE; | ||
TRUNCATE chain.tx CASCADE; | ||
TRUNCATE chain.txIn CASCADE; | ||
TRUNCATE chain.txOut CASCADE; | ||
TRUNCATE chain.assetOut; | ||
TRUNCATE chain.assetMint; | ||
|
||
CREATE TABLE chain.script | ||
( id BYTEA PRIMARY KEY | ||
, bytes BYTEA NOT NULL | ||
); | ||
|
||
COMMIT; |
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
Oops, something went wrong.