You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
303 B

# --- !Ups
CREATE TYPE BLOCK_EXTRACTION_METHOD_TYPE AS ENUM ('PoW', 'PoS', 'TPoS');
ALTER TABLE blocks
ADD COLUMN extraction_method BLOCK_EXTRACTION_METHOD_TYPE NOT NULL DEFAULT 'PoW';
# --- !Downs
ALTER TABLE blocks
DROP COLUMN extraction_method;
DROP TYPE BLOCK_EXTRACTION_METHOD_TYPE;