Pagina 1 van 1

tabel verwijderd

Geplaatst: 23 jul 2006, 19:40
door StevenW
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.

:oops:

Geplaatst: 23 jul 2006, 20:02
door ElbertF
Die kun je vinden in het phpBB pakket wat je gewoon kunt downloaden. In de map /install/schemas.

Geplaatst: 23 jul 2006, 20:02
door Raimon

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;