= 0), category varchar(255) NOT NULL default '', recipients text NOT NULL default '', reply text NOT NULL default '', weight smallint NOT NULL default '0', selected smallint NOT NULL default '0', PRIMARY KEY (cid), UNIQUE (category) )"); break; } } /** * Implementation of hook_uninstall(). */ function contact_uninstall() { db_query('DROP TABLE {contact}'); variable_del('contact_default_status'); variable_del('contact_form_information'); variable_del('contact_hourly_threshold'); }