Browse Source

Update 'grocery_db_tables.sql'

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

4
grocery_db_tables.sql

@ -141,7 +141,7 @@ SELECT * FROM orders;
-- Members Table Schema
create table `members`(
`UserID` int(11) NOT NULL,
`MemberID` int(11) not null,
`MemberID` int(11) not null AUTO_INCREMENT,
`MemberName` varchar(20) not null,
`MemberDoorNumber` int(4) not null,
`TotalItems` int(3) not null default 0,
@ -159,7 +159,7 @@ select * from members;
-- Cart Table Schema
CREATE TABLE IF NOT EXISTS `cart` (
`CartID` int NOT NULL,
`CartID` int NOT NULL AUTO_INCREMENT,
`UserID` int NOT NULL,
`OrderID` int NOT NULL,
`ProductName` varchar(50) NOT NULL,

Loading…
Cancel
Save