Skip to content

Instantly share code, notes, and snippets.

View Genyus's full-sized avatar

Gary McPherson Genyus

View GitHub Profile
DROP TABLE IF EXISTS market;
CREATE DATABASE market;
USE market;
CREATE TABLE IF NOT EXISTS `produce` (
`id` INT(10) NOT NULL,
`name` VARCHAR(50) NOT NULL,
`type` VARCHAR(50) NOT NULL,