feat: added migrations

This commit is contained in:
ITQ
2025-11-13 16:10:28 +03:00
parent c3def9dc26
commit c519941c5a
6 changed files with 170 additions and 2 deletions
@@ -0,0 +1 @@
drop table if exists orders;
@@ -0,0 +1,5 @@
create table if not exists orders (
id uuid primary key,
item varchar(500) not null,
quantity integer not null check (quantity > 0)
);