Created
January 27, 2018 13:13
-
-
Save linuxsoares/4a2786bdec1f4d762a1a84853b20bbf1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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