-- Tabellenstruktur für Tabelle `mybb_icons`
--
CREATE TABLE IF NOT EXISTS `mybb_icons` (
`iid` smallint(5) unsigned NOT NULL auto_increment,
`name` varchar(120) NOT NULL default '',
`path` varchar(220) NOT NULL default '',
PRIMARY KEY (`iid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
--
-- Daten für Tabelle `mybb_icons`
--
INSERT INTO `mybb_icons` VALUES (1, 'myBB', 'images/icons/my.gif');
INSERT INTO `mybb_icons` VALUES (2, 'Exclamation', 'images/icons/exclamation.gif');
INSERT INTO `mybb_icons` VALUES (3, 'Question', 'images/icons/question.gif');
INSERT INTO `mybb_icons` VALUES (4, 'Smile', 'images/icons/smile.gif');
INSERT INTO `mybb_icons` VALUES (5, 'Sad', 'images/icons/sad.gif');
INSERT INTO `mybb_icons` VALUES (6, 'Wink', 'images/icons/wink.gif');
INSERT INTO `mybb_icons` VALUES (7, 'Cool', 'images/icons/cool.gif');
INSERT INTO `mybb_icons` VALUES (8, 'Big Grin', 'images/icons/biggrin.gif');
INSERT INTO `mybb_icons` VALUES (9, 'Toungue', 'images/icons/tongue.gif');
INSERT INTO `mybb_icons` VALUES (10, 'Rolleyes', 'images/icons/rolleyes.gif');
INSERT INTO `mybb_icons` VALUES (11, 'Shy', 'images/icons/shy.gif');
INSERT INTO `mybb_icons` VALUES (16, '', 'images/icons/at.gif');