2022-11-05 09:51:32 +01:00
|
|
|
table meet
|
|
|
|
column meet id serial primary key
|
|
|
|
column meet title text not null
|
|
|
|
column meet key text unique
|
2025-01-27 00:42:35 +01:00
|
|
|
column meet active boolean default true
|
2022-11-05 09:51:32 +01:00
|
|
|
|
|
|
|
table date
|
|
|
|
column date id serial primary key
|
|
|
|
column date date date not null
|
|
|
|
column date display text
|
|
|
|
column date meet int references meet not null
|
|
|
|
|
|
|
|
table time
|
|
|
|
column time id serial primary key
|
|
|
|
column time time time not null
|
|
|
|
column time display text
|
|
|
|
column time meet int references meet not null
|
|
|
|
|
|
|
|
table place
|
|
|
|
column place id serial primary key
|
|
|
|
column place name text not null
|
|
|
|
column place meet int references meet not null
|
|
|
|
|
|
|
|
table bod
|
|
|
|
column bod id serial primary key
|
|
|
|
column bod email text not null unique
|
2024-10-06 13:37:30 +02:00
|
|
|
column bod short text
|
2022-11-05 09:51:32 +01:00
|
|
|
column bod key text unique
|
|
|
|
column bod keychange timestamptz default now()
|
|
|
|
|
|
|
|
table date_vote
|
|
|
|
column date_vote date int not null references date
|
|
|
|
column date_vote bod int not null references bod
|
2025-01-26 22:48:32 +01:00
|
|
|
column date_vote preference float4
|
2022-11-05 09:51:32 +01:00
|
|
|
|
|
|
|
table time_vote
|
|
|
|
column time_vote time int not null references time
|
|
|
|
column time_vote bod int not null references bod
|
2025-01-26 22:48:32 +01:00
|
|
|
column time_vote preference float4
|
2022-11-05 09:51:32 +01:00
|
|
|
|
|
|
|
table place_vote
|
|
|
|
column place_vote place int not null references place
|
|
|
|
column place_vote bod int not null references bod
|
2025-01-26 22:48:32 +01:00
|
|
|
column place_vote preference float4
|
2025-01-27 00:42:35 +01:00
|
|
|
|
|
|
|
table news
|
|
|
|
column news id serial primary key
|
|
|
|
column news meet int references meet not null
|
|
|
|
column news ts timestamptz not null default now()
|
|
|
|
column news content text not null
|