Renamed SQL file and rewrote README

This commit is contained in:
2013-07-25 05:12:06 +02:00
parent c3060ac4dd
commit aaa6a44059
2 changed files with 6 additions and 8 deletions

7
blogtable.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;