Skip to content

Instantly share code, notes, and snippets.

@cnevinc
Created January 9, 2014 21:48
Show Gist options
  • Save cnevinc/8342675 to your computer and use it in GitHub Desktop.
Save cnevinc/8342675 to your computer and use it in GitHub Desktop.
CREATE DATABASE `guestbook` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `guestbook`;
CREATE TABLE `message` (
`id` int(10) NOT NULL auto_increment,
`message` text NOT NULL,
`user` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment