mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 23:32:37 +03:00
15 lines
310 B
SQL
15 lines
310 B
SQL
create table orders
|
|
(
|
|
id serial primary key,
|
|
name varchar(255),
|
|
price integer
|
|
);
|
|
|
|
create table clients
|
|
(
|
|
id serial primary key,
|
|
last_name varchar(255),
|
|
country varchar(255),
|
|
order_id integer constraint client_order_fk references orders (id) on delete cascade on update no action
|
|
);
|