Files
Datarush/cmd/migrate/migrations/000001_create_orders_table.up.sql
T
2025-12-11 02:36:03 +04:00

6 lines
147 B
SQL

create table if not exists orders (
id uuid primary key,
item varchar(500) not null,
quantity integer not null check (quantity > 0)
);