From 2100a3c99266d1420b118edc216ee3faecd6834e Mon Sep 17 00:00:00 2001 From: JT Smith Date: Mon, 10 Apr 2006 00:17:59 +0000 Subject: [PATCH] fixed typo, updated change log to reflect new email properties --- docs/changelog/6.x.x.txt | 1 + docs/upgrades/upgrade_6.8.8-6.99.0.pl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 993ac70fb..6552cbb26 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -26,6 +26,7 @@ - Added a field set grouping mechanism to HTMLForm and TabForm. - Added save buttons at the top of all the HTML forms for easier access. - Added archive/unarchive options to CS threads. + - Added a mechanism to send emails to a CS which will accept them as posts. - Increased the performance of CS Thread viewing by 500%. - Added a database cache option as an alternative to memcached. - Removed page caching system and added individual asset caches, because not diff --git a/docs/upgrades/upgrade_6.8.8-6.99.0.pl b/docs/upgrades/upgrade_6.8.8-6.99.0.pl index b3e2a68c0..2e6a82915 100644 --- a/docs/upgrades/upgrade_6.8.8-6.99.0.pl +++ b/docs/upgrades/upgrade_6.8.8-6.99.0.pl @@ -189,7 +189,7 @@ sub updateCs { $session->db->write("alter table Collaboration add column mailPassword varchar(255)"); $session->db->write("alter table Collaboration add column mailAddress varchar(255)"); $session->db->write("alter table Collaboration add column mailPrefix varchar(255)"); - $session->db->write("alter table Collaboration add column getMail int not null 0"); + $session->db->write("alter table Collaboration add column getMail int not null default 0"); $session->db->write("alter table Collaboration add column getMailInterval int not null default 300"); }