DROP TABLE IF EXISTS cdb_request;
CREATE TABLE cdb_request (
variable varchar(32) NOT NULL DEFAULT '',
value mediumtext NOT NULL,
type tinyint(1) NOT NULL,
PRIMARY KEY (variable),
KEY type (type)
) TYPE=MyISAM;
REPLACE INTO cdb_settings (variable, value) VALUES ('infosidestatus', '');