10 строки
253 B
SQL
10 строки
253 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 lunch_polls () inherits (polls);
|