Ein Auszug aus einem Confixx-Backup:
Code: Alles auswählen
--
-- Table structure for table `phpbb_attachments`
--
DROP TABLE IF EXISTS `phpbb_attachments`;
CREATE TABLE `phpbb_attachments` (
`attach_id` mediumint(8) unsigned NOT NULL default '0',
`post_id` mediumint(8) unsigned NOT NULL default '0',
`privmsgs_id` mediumint(8) unsigned NOT NULL default '0',
`user_id_1` mediumint(8) NOT NULL default '0',
`user_id_2` mediumint(8) NOT NULL default '0',
KEY `attach_id_post_id` (`attach_id`,`post_id`),
KEY `attach_id_privmsgs_id` (`attach_id`,`privmsgs_id`)
) TYPE=MyISAM;
--
-- Dumping data for table `phpbb_attachments`
--
INSERT INTO `phpbb_attachments` VALUES (13,152,0,2,0);
INSERT INTO `phpbb_attachments` VALUES (11,484,0,9,0);
INSERT INTO `phpbb_attachments` VALUES (14,817,0,14,0);
