lisali
Erfahrenes Mitglied
Es ist nur diese Tabelle:
Code:
CREATE TABLE IF NOT EXISTS `messages` (
`id` int(10) unsigned NOT NULL auto_increment,
`sid` int(10) unsigned NOT NULL,
`uid` int(10) unsigned NOT NULL,
`title` varchar(60) NOT NULL default 'Kein Betreff',
`text` text NOT NULL,
`status` tinyint(1) NOT NULL default '0',
`date` datetime NOT NULL,
`uid_delete` tinyint(1) NOT NULL default '0',
`sid_delete` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=210 ;
INSERT INTO `messages` (`id`, `sid`, `uid`, `title`, `text`, `status`, `date`, `uid_delete`, `sid_delete`) VALUES
(161, 1, 45, 'Kein Betreff', '166', 1, '2010-05-24 21:38:06', 0, 0),
(186, 27, 1, 'Kein Betreff', 'adsasd', 1, '2010-05-27 21:50:41', 0, 0),
(200, 1, 1, 'Kein Betreff', 'test', 1, '2010-05-30 10:10:40', 1, 0),
(201, 1, 1, 'Kein Betreff', 'aaaa', 1, '2010-05-30 10:13:08', 1, 0),
(202, 1, 1, 'Kein Betreff', 'ey', 1, '2010-05-30 10:54:24', 1, 0),
(203, 1, 1, 'Kein Betreff', 'ye', 1, '2010-05-30 10:54:35', 1, 0),
(204, 1, 1, 'Kein Betreff', 'yey', 1, '2010-05-30 10:55:28', 1, 0),
(205, 1, 1, 'Kein Betreff', 'yey', 1, '2010-05-30 10:56:10', 1, 0),
(206, 1, 1, 'Kein Betreff', 'test', 1, '2010-05-30 11:04:35', 1, 0),
(208, 1, 1, 'Kein Betreff', 'uuk', 1, '2010-05-30 11:44:42', 1, 0),
(209, 1, 1, 'Kein Betreff', 'ujujjujujuuju', 0, '2010-05-30 11:44:46', 0, 0);