12345678910111213141516171819202122232425262728 |
- -- -----------------------------------------------------------------
- -- Создание таблиц
- -- Таблица семейств птиц
- create table family (
- family_id bigint generated always as identity primary key,
- family_name varchar(150) not null,
- description text
- );
- -- Таблица родов птиц
- create table genus (
- genus_id bigint generated always as identity primary key,
- genus_name varchar(150) not null,
- description text,
- family_id bigint not null references family(family_id)
- );
- -- Таблица видов птиц
- create table species (
- species_id bigint generated always as identity primary key,
- species_name varchar(150) not null,
- genus_id bigint not null references genus(genus_id),
- description text,
- average_length smallint not null check (average_length > 0),
- average_weight smallint not null check (average_weight > 0),
- primary_color varchar(50) not null
- );
|