cit-is-bot-backend/database.sql

10 строки
254 B
SQL

create table polls (
id bigint not null,
date date not null,
is_complete boolean default false not null,
primary key (id)
);
create table mood_polls () inherits (polls);
create table dinner_polls () inherits (polls);