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
-- MAIN INNODB TABLE FOR ARTICLES | |
CREATE TABLE `article` ( | |
`id` SMALLINT(5) UNSIGNED NOT NULL AUTO_INCREMENT, | |
`title` VARCHAR(50) NOT NULL, | |
`abstract` TEXT NOT NULL, | |
`content` MEDIUMTEXT NOT NULL, | |
`publish_date` DATETIME NULL DEFAULT NULL, | |
PRIMARY KEY (`id`) | |
) | |
COLLATE='utf8_general_ci' |
NewerOlder