mirror of
https://github.com/hexolan/stocklet.git
synced 2026-03-26 19:51:17 +00:00
chore: initial commit
This commit is contained in:
26
schema/sql/shipping/000001_init_shipping.up.sql
Normal file
26
schema/sql/shipping/000001_init_shipping.up.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
CREATE TABLE shipments (
|
||||
id bigserial PRIMARY KEY,
|
||||
order_id varchar(64) NOT NULL,
|
||||
|
||||
dispatched boolean DEFAULT FALSE,
|
||||
|
||||
created_at timestamp NOT NULL DEFAULT timezone('utc', now())
|
||||
);
|
||||
|
||||
CREATE TABLE shipment_items (
|
||||
shipment_id bigserial,
|
||||
product_id varchar(64),
|
||||
|
||||
quantity integer NOT NULL,
|
||||
|
||||
PRIMARY KEY (shipment_id, product_id),
|
||||
FOREIGN KEY (shipment_id) REFERENCES shipments (id) ON DELETE CASCADE
|
||||
);
|
||||
|
||||
CREATE TABLE event_outbox (
|
||||
id bigserial PRIMARY KEY,
|
||||
|
||||
aggregateid varchar(128) NOT NULL,
|
||||
aggregatetype varchar(128) NOT NULL,
|
||||
payload bytea NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user