Added a SQL file to create the table
This commit is contained in:
parent
26aba89c33
commit
c3060ac4dd
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;
|
Loading…
x
Reference in New Issue
Block a user