Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE `products` (
- `id` int(10) NOT NULL,
- `name` varchar(50) NOT NULL,
- `description` text NOT NULL,
- `price` int(9) NOT NULL,
- `stock` int(3) NOT NULL,
- `image` text NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- ALTER TABLE `products`
- ADD PRIMARY KEY (`id`);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement