cit-is-bot-backend/database.sql

10 строки
253 B
MySQL
Исходник Обычный вид История

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 lunch_polls () inherits (polls);