PHPMyAdmin がエラー #1064 をスローする理由を誰か教えてもらえますか?
MySQL クエリ:
CREATE TABLE posts
( ID not null auto_increment unsigned int,
pType enum('article', 'link') not null,
Title text null,
Link text null,
BodyMD longtext null,
BodyHT longtext not null,
URL tinytext not null,
ShortURL tinytext not null,
status enum('drafted', 'published') not null,
DateEdited timestamp null,
DatePublished timestamp null,
Topic enum('') null,
primary key (ID, URL, ShortURL)
);