Added a SQL file to create the table

This commit is contained in:
Jack-Benny Persson 2013-07-25 05:06:45 +02:00
parent 26aba89c33
commit c3060ac4dd

7
blog_table.sql Normal file
View File

@ -0,0 +1,7 @@
CREATE TABLE `blog` (
`postnumber` int(11) NOT NULL AUTO_INCREMENT,
`date` date NOT NULL,
`title` text COLLATE utf8_unicode_ci NOT NULL,
`posttext` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`postnumber`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;