Skip to content

Instantly share code, notes, and snippets.

@linuxsoares
Created January 27, 2018 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxsoares/4a2786bdec1f4d762a1a84853b20bbf1 to your computer and use it in GitHub Desktop.
Save linuxsoares/4a2786bdec1f4d762a1a84853b20bbf1 to your computer and use it in GitHub Desktop.
CREATE DATABASE menagerie;
CREATE TABLE items (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
title varchar(255),
description varchar(255),
primary key (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment