comparison database.mysql @ 12:7917bd536187 draft

Added hook for new articles, detect send/write failures, fixed handling of multiline headers, add Date header if it doesn't exist, add option to disable peers, fixes for synchronization with INN, added streaming mode support, small fixes
author Ivo Smits <Ivo@UCIS.nl>
date Wed, 12 Jun 2013 22:22:07 +0200
parents 0dcdb73cbcbf
children 372f4e195986
comparison
equal deleted inserted replaced
11:e0807e0b1a67 12:7917bd536187
76 -- 76 --
77 77
78 CREATE TABLE IF NOT EXISTS `peers` ( 78 CREATE TABLE IF NOT EXISTS `peers` (
79 `id` int(10) unsigned NOT NULL auto_increment, 79 `id` int(10) unsigned NOT NULL auto_increment,
80 `address` varchar(255) collate utf8_unicode_ci NOT NULL, 80 `address` varchar(255) collate utf8_unicode_ci NOT NULL,
81 `enabled` tinyiny(1) unsigned NOT NULL DEFAULT '1',
81 `post` tinyint(1) unsigned NOT NULL, 82 `post` tinyint(1) unsigned NOT NULL,
82 `lastposted` int(10) unsigned default NULL, 83 `lastposted` int(10) unsigned default NULL,
83 PRIMARY KEY (`id`) 84 PRIMARY KEY (`id`)
84 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 85 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
85 86