CREATE TABLE articles
(
id smallint unsigned NOT NULL auto_increment,
publicationDate date NOT NULL, # When the article was published
title varchar(255) NOT NULL, # Full title of the article
content mediumtext NOT NULL, # The HTML content of the article
PRIMARY KEY (id)
);