CREATE TABLE sample_uploads ( sample_id tinyint(4) NOT NULL default '0', sample_submit_date datetime NOT NULL default '0000-00-00 00:00:00', sample_remote_addr text NOT NULL, sample_remote_host text NOT NULL, sample_remote_ua text NOT NULL, sample_db_title text NOT NULL, sample_user_name text NOT NULL, sample_copyright tinyint(4) NOT NULL default '0', sample_image_depth tinyint(4) NOT NULL default '0', sample_category tinyint(4) NOT NULL default '0', sample_description text NOT NULL, sample_filename text NOT NULL, PRIMARY KEY (sample_id) ) TYPE=MyISAM;