minor
This commit is contained in:
7
db/50_product_attributes.sql
Normal file
7
db/50_product_attributes.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
CREATE TABLE IF NOT EXISTS product_attributes (
|
||||
id UUID PRIMARY KEY,
|
||||
product_id UUID NOT NULL REFERENCES products(id) ON DELETE CASCADE,
|
||||
key TEXT NOT NULL,
|
||||
value TEXT NOT NULL,
|
||||
unit TEXT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user