CREATE TABLE `blogs` (
  `id` int(255) NOT NULL auto_increment,
  `date` date NOT NULL,
  `title` varchar(255) NOT NULL,
  `introtext` text NOT NULL,
  `maintext` text NOT NULL,
  PRIMARY KEY  (`id`)
);

INSERT INTO `blogs` VALUES(1, '2008-10-24', 'My first blog post', '<h1>Hello World!</h1>\r\n<p>This is my first article using the CakePHP framework. I hope you like it.</p>', '<h2>This text will only be visible on the second page.</h2>\r\n<h3>It''s just like how <a href="http://joomla.org/" title="Joomla! CMS">Joomla!</a> works!</h3>');
INSERT INTO `blogs` VALUES(2, '2008-10-27', '2nd article', '<p>This is my second article, just to test the amazingly cool CakePHP framework.</p>', '<p>Even the <em>read more</em> works!</p>');
INSERT INTO `blogs` VALUES(3, '2008-11-02', 'Last article', '<p>Sorry guys, this will be my last article. Make sure you check out <a href="http://www.marcofolio.net/" title="Marcofolio">Marcofolio</a> for more interesting articles!</p>', '<p>And in the future: Making this blog bigger & better!</p>');