No changes made

This commit is contained in:
2025-04-16 12:47:04 -04:00
commit 1ed3b0c2d4
98 changed files with 8857 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
create table powders
(
id uuid primary key default gen_random_uuid(),
name varchar(255) not null,
meta json,
photo bytea,
manufacturer_id uuid not null,
created_at timestamp default NOW() not null,
constraint powders_manufacturers_id_fk
foreign key (manufacturer_id) references manufacturers (id)
);