2024-09-23 00:12:56 +00:00
|
|
|
--============================================================================--
|
|
|
|
-- I HATE DATABASES!!! --
|
|
|
|
--============================================================================--
|
|
|
|
|
|
|
|
create table chats (
|
|
|
|
id uuid default (gen_random_uuid()) primary key,
|
|
|
|
url_path char(6) unique not null,
|
|
|
|
name text
|
|
|
|
);
|
|
|
|
|
|
|
|
create table messages (
|
|
|
|
id uuid default (gen_random_uuid()) primary key,
|
2024-10-02 23:58:20 +00:00
|
|
|
timestamp timestamptz default (now()),
|
2024-09-23 00:12:56 +00:00
|
|
|
chat_id uuid not null references chats(id),
|
|
|
|
content varchar(2000) not null,
|
|
|
|
from_admin boolean not null
|
|
|
|
)
|