Created
January 28, 2011 21:15
-
-
Save mantonuk/800965 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 TABLE `comments` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`email` varchar(255) DEFAULT NULL, | |
`name` varchar(255) DEFAULT NULL, | |
`phone` varchar(255) DEFAULT NULL, | |
`comment` text, | |
`company_id` int(11) DEFAULT NULL, | |
`status` int(11) DEFAULT '1', | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment