Führe folgendes mit z.B. phpMyAdmin aus, achte aber drauf ob du den Prefix phpbb vielleicht noch an deinen Tabellennamen anpassen mußt.
Code: Alles auswählen
DROP TABLE IF EXISTS `phpbb_em_teams`;
CREATE TABLE IF NOT EXISTS `phpbb_em_teams` (
`team_id` mediumint(8) NOT NULL auto_increment,
`team_name` varchar(255) NOT NULL default '',
`team_img` varchar(255) NOT NULL default '',
`team_link` varchar(255) NOT NULL default '',
`team_group` varchar(5) NOT NULL default '',
`team_points` mediumint(4) NOT NULL default '0',
`team_goals` mediumint(8) NOT NULL default '0',
`team_gotgoals` mediumint(8) NOT NULL default '0',
PRIMARY KEY (`team_id`)
) TYPE=MyISAM AUTO_INCREMENT=17 AUTO_INCREMENT=17 ;
--
-- Daten für Tabelle `phpbb_em_teams`
--
INSERT INTO `phpbb_em_teams` VALUES (1, 'Schweiz', 'schweiz.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=128/index.html', 'A', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (2, 'Tschechische Republik', 'tschech.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=58837/index.html', 'A', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (3, 'Portugal', 'portugal.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=110/index.html', 'A', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (4, 'Türkei', 'tuerkei.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=135/index.html', 'A', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (5, 'Österreich', 'oesterreich.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=8/index.html', 'B', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (6, 'Kroatien', 'kroatien.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=56370/index.html', 'B', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (7, 'Deutschland', 'germany.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=47/index.html', 'B', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (8, 'Polen', 'polen.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=109/index.html', 'B', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (9, 'Niederlande', 'niederlande.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=95/index.html', 'C', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (10, 'Italien', 'italien.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=66/index.html', 'C', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (11, 'Rumänien', 'rumaenien.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=113/index.html', 'C', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (12, 'Frankreich', 'frankreich.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=43/index.html', 'C', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (13, 'Griechenland', 'griechenland.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=49/index.html', 'D', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (14, 'Schweden', 'schweden.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=127/index.html', 'D', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (15, 'Spanien', 'spanien.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=122/index.html', 'D', 0, 0, 0);
INSERT INTO `phpbb_em_teams` VALUES (16, 'Russland', 'russland.gif', 'http://de.euro2008.uefa.com/tournament/teams/team=57451/index.html', 'D', 0, 0, 0);
Die Tabelle ist in Version 0.5.1 & 0.5.2 nicht mehr vollständig vorhanden, vielleicht könnt ihr sie ins nächste Update wieder aufnehmen.