Browse Source

Update 'grocery_db_tables.sql'

master
Gowrisankar 4 years ago
parent
commit
ba5b138bec
1 changed files with 1 additions and 0 deletions
  1. 1
      grocery_db_tables.sql

1
grocery_db_tables.sql

@ -163,6 +163,7 @@ CREATE TABLE IF NOT EXISTS `cart` (
`UserID` int NOT NULL,
`OrderID` int NOT NULL,
`ProductName` varchar(50) NOT NULL,
`ProductPrice` int(5) NOT NULL,
`Quantity` int NOT NULL,
PRIMARY KEY (`CartID`),
FOREIGN KEY (`UserID`) REFERENCES users(`UserID`)

Loading…
Cancel
Save