forked from cerc-io/ipld-eth-server
Convert existing migrations from timestamp to versioned
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
-- +goose Up
|
||||
CREATE TABLE token_supply (
|
||||
id SERIAL,
|
||||
block_id INTEGER NOT NULL,
|
||||
supply DECIMAL NOT NULL,
|
||||
token_address CHARACTER VARYING(66) NOT NULL,
|
||||
CONSTRAINT blocks_fk FOREIGN KEY (block_id)
|
||||
REFERENCES blocks (id)
|
||||
ON DELETE CASCADE
|
||||
)
|
||||
|
||||
|
||||
-- +goose Down
|
||||
-- +goose Up
|
||||
DROP TABLE token_supply;
|
||||
Reference in New Issue
Block a user