-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c4c170
commit c29b843
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,14 @@ CREATE TABLE orders | |
id varchar(36) PRIMARY KEY NOT NULL, | ||
user_id varchar(36) NOT NULL, | ||
created_at timestamp, | ||
CONSTRAINT orders_ibfk_1 FOREIGN KEY (user_id) REFERENCES users (id) | ||
CONSTRAINT fk_user_id FOREIGN KEY (user_id) REFERENCES users (id) | ||
); | ||
|
||
CREATE TABLE order_items ( | ||
id varchar(36) PRIMARY KEY NOT NULL, | ||
order_id varchar(36) NOT NULL, | ||
created_at timestamp, | ||
CONSTRAINT fk_order_id FOREIGN KEY (order_id) REFERENCES orders (id) | ||
); | ||
|
||
INSERT INTO `users` VALUES ('0d60a85e-0b90-4482-a14c-108aea2557aa', 'wbo', '[email protected]', true, 'm', '2017-01-01'); | ||
|
@@ -29,3 +36,7 @@ INSERT INTO `orders` VALUES ('8bdf39d8-616c-45d4-826f-bad30cb4e1a3', '9e4de779-d | |
INSERT INTO `orders` VALUES ('f1f7c9c7-bdb7-4626-a5c9-44d8942e52dd', '39240e9f-ae09-4e95-9fd0-a712035c8ad7', '2018-01-01'); | ||
INSERT INTO `orders` VALUES ('e650ad64-f1e4-4f91-abea-ec1a70992926', '39240e9f-ae09-4e95-9fd0-a712035c8ad7', '2018-01-01'); | ||
INSERT INTO `orders` VALUES ('2b92734e-0e4c-11e8-ba89-0ed5f89f718b', '66a45c1b-19af-4ab5-8747-1b0e2d79339d', '2017-01-01'); | ||
|
||
INSERT INTO `order_items` VALUES ('7e4e057e-1709-11e8-b642-0ed5f89f718b', 'b9bcd5e1-75e6-412d-be87-278003519717', '2018-01-01'); | ||
INSERT INTO `order_items` VALUES ('dcad1150-1709-11e8-b642-0ed5f89f718b', '7ee31a7f-5140-483b-8ba1-fa8f116219c0', '2018-01-01'); | ||
INSERT INTO `order_items` VALUES ('d0d80524-174a-11e8-b642-0ed5f89f718b', '453f4498-b4e0-485f-94fa-72f233bb7958', '2018-01-01'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,13 @@ CREATE TABLE "orders" ( | |
FOREIGN KEY (user_id) REFERENCES users(id) | ||
); | ||
|
||
CREATE TABLE "order_items" ( | ||
id UUID PRIMARY KEY NOT NULL, | ||
order_id UUID NOT NULL, | ||
created_at timestamp, | ||
FOREIGN KEY (order_id) REFERENCES orders(id) | ||
); | ||
|
||
INSERT INTO "users" VALUES ('0d60a85e-0b90-4482-a14c-108aea2557aa', 'wbo', '[email protected]', true, 'm', '2017-01-01'); | ||
INSERT INTO "users" VALUES ('39240e9f-ae09-4e95-9fd0-a712035c8ad7', 'kp', '[email protected]', true, NULL, '2017-01-01'); | ||
INSERT INTO "users" VALUES ('9e4de779-d6a0-44bc-a531-20cdb97178d2', 'lp', '[email protected]', false, 'f', '2017-01-01'); | ||
|
@@ -31,6 +38,10 @@ INSERT INTO "orders" VALUES ('8bdf39d8-616c-45d4-826f-bad30cb4e1a3', '9e4de779-d | |
INSERT INTO "orders" VALUES ('f1f7c9c7-bdb7-4626-a5c9-44d8942e52dd', '39240e9f-ae09-4e95-9fd0-a712035c8ad7', '2018-01-01'); | ||
INSERT INTO "orders" VALUES ('e650ad64-f1e4-4f91-abea-ec1a70992926', '39240e9f-ae09-4e95-9fd0-a712035c8ad7', '2018-01-01'); | ||
INSERT INTO "orders" VALUES ('2b92734e-0e4c-11e8-ba89-0ed5f89f718b', '66a45c1b-19af-4ab5-8747-1b0e2d79339d', '2017-01-01'); | ||
|
||
INSERT INTO "order_items" VALUES ('7e4e057e-1709-11e8-b642-0ed5f89f718b', 'b9bcd5e1-75e6-412d-be87-278003519717', '2018-01-01'); | ||
INSERT INTO "order_items" VALUES ('dcad1150-1709-11e8-b642-0ed5f89f718b', '7ee31a7f-5140-483b-8ba1-fa8f116219c0', '2018-01-01'); | ||
INSERT INTO "order_items" VALUES ('d0d80524-174a-11e8-b642-0ed5f89f718b', '453f4498-b4e0-485f-94fa-72f233bb7958', '2018-01-01'); | ||
-- | ||
-- PostgreSQL database dump complete | ||
-- |