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/internal/db/schema/migrations/postgres/10/01_job_migrations.up.sql

10 lines
186 B

begin;
alter table job_run
alter column server_id type text;
alter table job_run
add constraint server_id_must_not_be_empty
check(length(trim(server_id)) > 0);
commit;