tabel verwijderd
Geplaatst: 23 jul 2006, 19:40
Zou iemand voor mij de tabel 'phpbb_vote_results' van de database hier kunnen plaatsen. Ik hoef alleen de tabel, niet de inhoud. Ik heb deze tabel per ongeluk verwijderd.


Code: Selecteer alles
DROP TABLE IF EXISTS `phpbb_vote_results`;
CREATE TABLE `phpbb_vote_results` (
`vote_id` mediumint(8) unsigned NOT NULL default '0',
`vote_option_id` tinyint(4) unsigned NOT NULL default '0',
`vote_option_text` varchar(255) NOT NULL default '',
`vote_result` int(11) NOT NULL default '0',
KEY `vote_option_id` (`vote_option_id`),
KEY `vote_id` (`vote_id`)
) TYPE=MyISAM;