From 3ed8316d35a08f23cff4c7033f953afca1a12b23 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Sat, 19 Jul 2003 14:32:53 +0000 Subject: [PATCH] added missing alter table statements for the new group by database query functionality --- docs/upgrades/upgrade_5.4.2-5.5.0.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_5.4.2-5.5.0.sql b/docs/upgrades/upgrade_5.4.2-5.5.0.sql index 781b547cd..fc38c310e 100644 --- a/docs/upgrades/upgrade_5.4.2-5.5.0.sql +++ b/docs/upgrades/upgrade_5.4.2-5.5.0.sql @@ -83,7 +83,9 @@ create table forumSubscription ( ); - +alter table groups add column databaseLinkId int not null default 0; +alter table groups add column dbCacheTimeout int not null default 3600; +alter table groups add column dbQuery text;