From acbd049fe0ec2b75951984f9a4488c80207d28e5 Mon Sep 17 00:00:00 2001 From: Leendert Bottelberghs Date: Mon, 16 Aug 2004 12:15:24 +0000 Subject: [PATCH] Altered forum table for thread pagination options. --- docs/upgrades/upgrade_6.1.1-6.2.0.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/upgrades/upgrade_6.1.1-6.2.0.sql b/docs/upgrades/upgrade_6.1.1-6.2.0.sql index 1f69cbf63..d4fa5c4f2 100644 --- a/docs/upgrades/upgrade_6.1.1-6.2.0.sql +++ b/docs/upgrades/upgrade_6.1.1-6.2.0.sql @@ -256,4 +256,6 @@ alter table page change lft nestedSetLeft int(11); alter table page change rgt nestedSetRight int(11); alter table page change id id char(22); delete from incrementer where incrementerId in ("messageLogId","profileCategoryId","templateId","navigationId","passiveProfileLogId","metaData_fieldId","userId","collateralId","pageId","databaseLinkId", "DataForm_entryId", "DataForm_fieldId", "DataForm_tabId", "EventsCalendar_eventId", "EventsCalendar_recurringId", "FileManager_fileId", "forumId", "forumPostId", "forumThreadId", "groupId", "languageId", "Product_benefitId", "Product_featureId", "Product_specificationId", "replacementId", "Survey_answerId", "Survey_id", "Survey_questionId", "Survey_responseId", "USS_id", "USS_submissionId", "wobjectId"); +alter table forum change postsPerPage threadsPerPage int(11) default 30; +alter table forum add postsPerPage int(11) default 10 after threadsPerPage;