# Copyright � 2002-2005 WWW.Expinion.net # The following creates necessary table for eu Random Quote # Database: MySQL DROP TABLE IF EXISTS table_q; CREATE TABLE table_q ( ID int(11) NOT NULL auto_increment, fldMEMO text NOT NULL, fldACTIVE int(1) NOT NULL default '0', PRIMARY KEY (ID) ) TYPE=MyISAM COMMENT='Random Quote Table';