From a36bd2d803bf88122a44e64b61389a8a80d83ff2 Mon Sep 17 00:00:00 2001 From: Vic Date: Wed, 25 May 2022 21:06:37 +0200 Subject: [PATCH] updated README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea61422..eec348f 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Note : If needed you can reset the tables by closing the app and running the fol - Products : | Column | Type | - |:-------------:|:------------------------------------------| + |---------------+-------------------------------------------| | id | SERIAL PRIMARY KEY | | name | VARCHAR(250) NOT NULL | | price | INTEGER NOT NULL | @@ -87,7 +87,7 @@ Note : If needed you can reset the tables by closing the app and running the fol - Users : | Column | Type | - |:-------------:|:------------------------------------------| + |---------------+-------------------------------------------| | id | SERIAL PRIMARY KEY | | firstName | VARCHAR(250) NOT NULL | | lastName | VARCHAR(250) NOT NULL | @@ -96,7 +96,7 @@ Note : If needed you can reset the tables by closing the app and running the fol - Orders : | Column | Type | - |:-------------:|:------------------------------------------| + |---------------+-------------------------------------------| | id | SERIAL PRIMARY KEY | | status | VARCHAR(15) | | user_id | INTEGER NOT NULL REFERENCES users(id) | @@ -104,7 +104,7 @@ Note : If needed you can reset the tables by closing the app and running the fol - Orders Products : | Column | Type | - |:-------------:|:------------------------------------------| + |---------------+-------------------------------------------| | id | SERIAL PRIMARY KEY | | quantity | INTEGER NOT NULL, | | order_id | INTEGER NOT NULL REFERENCES orders(id) |