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.
12 lines
454 B
12 lines
454 B
6 years ago
|
-- As bech32 format is not supported, it is simpler to just disable the checks until it is supported.
|
||
|
|
||
|
# --- !Ups
|
||
|
|
||
|
ALTER DOMAIN ADDRESS_TYPE DROP CONSTRAINT address_type_check;
|
||
|
ALTER DOMAIN ADDRESS_TYPE ADD CONSTRAINT address_type_check CHECK (VALUE <> '');
|
||
|
|
||
|
# --- !Downs
|
||
|
|
||
|
ALTER DOMAIN ADDRESS_TYPE DROP CONSTRAINT address_type_check;
|
||
|
ALTER DOMAIN ADDRESS_TYPE ADD CONSTRAINT address_type_check CHECK (VALUE ~ '(^[A-Za-z0-9]{34}$)|(^[A-Za-z0-9]{42}$)');
|