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.
15 lines
256 B
15 lines
256 B
7 years ago
|
|
||
|
# --- !Ups
|
||
|
|
||
|
DROP INDEX blocks_height_index;
|
||
|
|
||
|
ALTER TABLE blocks
|
||
|
ADD CONSTRAINT blocks_height_unique UNIQUE (height);
|
||
|
|
||
|
# --- !Downs
|
||
|
|
||
|
ALTER TABLE blocks
|
||
|
DROP CONSTRAINT blocks_height_unique;
|
||
|
|
||
|
CREATE INDEX blocks_height_index ON blocks USING BTREE (height);
|