Skip to content

Commit

Permalink
relax text limits in schedules tables (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-pie authored Dec 12, 2023
1 parent 08a4e4a commit ce2c5b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE IF NOT EXISTS public.schedules
(
auto_update_time timestamp without time zone NOT NULL DEFAULT (now())::timestamp without time zone,
schedule_id character varying(255) NOT NULL DEFAULT uuid_generate_v1(),
schedule_description character varying(255),
schedule_description character varying(1024),
server_id integer NOT NULL,
schedule_order integer NOT NULL DEFAULT 1,
is_async smallint NOT NULL DEFAULT 1,
Expand All @@ -62,9 +62,9 @@ CREATE TABLE IF NOT EXISTS public.schedules
interval_mask character varying(32) NOT NULL,
first_run_date timestamp(3) without time zone NOT NULL DEFAULT '1000-01-01 00:00:00.000'::timestamp without time zone,
last_run_date timestamp(3) without time zone NOT NULL DEFAULT '9999-12-31 23:59:59.999'::timestamp without time zone,
exec_command character varying(1024) NOT NULL,
parameters character varying(255),
adhoc_parameters character varying(255),
exec_command character varying() NOT NULL,
parameters character varying(),
adhoc_parameters character varying(),
schedule_group_id integer,
CONSTRAINT schedules_pkey PRIMARY KEY (schedule_id),
CONSTRAINT schedules_server_id_fkey FOREIGN KEY (server_id)
Expand Down

0 comments on commit ce2c5b6

Please sign in to comment.