Created
January 9, 2014 21:48
-
-
Save cnevinc/8342675 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 `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