added camp plan tables

This commit is contained in:
Jottyfan
2026-04-15 10:22:30 +02:00
parent 0addff7bb5
commit da8e346ab8
34 changed files with 2500 additions and 102 deletions
+8
View File
@@ -0,0 +1,8 @@
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
);