mirror of
https://github.com/hexolan/stocklet.git
synced 2026-03-26 19:51:17 +00:00
32 lines
717 B
SQL
32 lines
717 B
SQL
CREATE TABLE orders (
|
|
id bigserial PRIMARY KEY,
|
|
status smallint NOT NULL,
|
|
|
|
customer_id varchar(64) NOT NULL,
|
|
shipment_id varchar(64),
|
|
transaction_id varchar(64),
|
|
|
|
items_price money,
|
|
total_price money,
|
|
|
|
created_at timestamp NOT NULL DEFAULT timezone('utc', now()),
|
|
updated_at timestamp
|
|
);
|
|
|
|
CREATE TABLE order_items (
|
|
order_id bigserial,
|
|
product_id varchar(64),
|
|
|
|
quantity integer NOT NULL,
|
|
|
|
PRIMARY KEY (order_id, product_id),
|
|
FOREIGN KEY (order_id) REFERENCES orders (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
|
|
); |