= 0), nid int_unsigned NOT NULL default '0', chtext varchar(128) NOT NULL default '', chvotes int NOT NULL default '0', chorder int NOT NULL default '0', PRIMARY KEY (chid) )"); db_query("CREATE INDEX {poll_choices}_nid_idx ON {poll_choices} (nid)"); break; } } /** * Implementation of hook_uninstall(). */ function poll_uninstall() { db_query('DROP TABLE {poll}'); db_query('DROP TABLE {poll_votes}'); db_query('DROP TABLE {poll_choices}'); }