10 строки
254 B
MySQL
10 строки
254 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 dinner_polls () inherits (polls);
|