Thanks!
fanfic_authors
id int(11) NOT NULL auto_increment,
name varchar(100) NOT NULL default '',
email varchar(100) NOT NULL default '',
PRIMARY KEY (id)
TYPE=MyISAM;
fanfic_contents
id int(11) NOT NULL auto_increment,
title varchar(255) NOT NULL default '',
disclaimer text NOT NULL,
summary text NOT NULL,
spoilers text NOT NULL,
season int(11) NOT NULL default '0',
author int(11) NOT NULL default '0',
rating int(11) NOT NULL default '0',
content text NOT NULL,
notes text NOT NULL,
PRIMARY KEY (id)
TYPE=MyISAM;
|