Files
COJooq/src/main/resources/tables/slot.sql
T
2026-04-15 10:22:30 +02:00

9 lines
259 B
SQL

create table public.t_slot (
created timestamp default CURRENT_TIMESTAMP,
pk_slot int primary key generated always as identity,
name text,
fk_plan int not null references public.t_plan(pk_plan),
start_time time not null,
end_time time not null
);