Added a SQL file to create the table
This commit is contained in:
7
blog_table.sql
Normal file
7
blog_table.sql
Normal 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;
|
Reference in New Issue
Block a user