diff database.mysql @ 3:0dcdb73cbcbf

Increased article body length to 16MB in database scheme, cleaned up the code, added a script to forcefully reload an individual article
author Ivo Smits <Ivo@UCIS.nl>
date Tue, 12 Apr 2011 01:47:09 +0200
parents 40e545510a57
children 7917bd536187
line wrap: on
line diff
--- a/database.mysql	Tue Apr 12 00:29:41 2011 +0200
+++ b/database.mysql	Tue Apr 12 01:47:09 2011 +0200
@@ -3,7 +3,7 @@
 -- http://www.phpmyadmin.net
 --
 -- Machine: localhost
--- Genereertijd: 12 Apr 2011 om 00:18
+-- Genereertijd: 12 Apr 2011 om 01:45
 -- Serverversie: 5.0.51
 -- PHP-Versie: 5.3.3-7
 
@@ -50,7 +50,7 @@
   `id` int(10) unsigned NOT NULL auto_increment,
   `messageid` varchar(255) character set ascii NOT NULL,
   `header` text character set ascii NOT NULL,
-  `body` text character set ascii NOT NULL,
+  `body` mediumtext character set ascii NOT NULL,
   PRIMARY KEY  (`id`),
   UNIQUE KEY `messageid` (`messageid`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;