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.
boundary/database/migrations/postgresql/001_domains.up.sql

11 lines
198 B

begin;
create domain icu_public_id as text
check(
length(trim(value)) > 31
);
comment on domain icu_public_id is
'Random ID generated with github.com/hashicorp/vault/sdk/helper/base62';
commit;