From 40918a88f80a13c612250ac1c4a615271df3ad13 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 14 Nov 2005 19:19:11 +0000 Subject: [PATCH] output messages from all upgrade subroutines --- docs/upgrades/upgrade_6.7.8-6.8.0.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/upgrades/upgrade_6.7.8-6.8.0.pl b/docs/upgrades/upgrade_6.7.8-6.8.0.pl index dbb850e04..bf667e1ce 100644 --- a/docs/upgrades/upgrade_6.7.8-6.8.0.pl +++ b/docs/upgrades/upgrade_6.7.8-6.8.0.pl @@ -103,6 +103,7 @@ sub removeUnneededFiles { #------------------------------------------------- sub addPhotoField { + print "\tAdding photo field to User Profiles\n" unless ($quiet); ##Get profileCategoryId. my ($categoryId) = WebGUI::SQL->quickArray(q!select profileCategoryId from userProfileCategory where categoryName='WebGUI::International::get(439,"WebGUI");'!); ##Get last sequence number @@ -114,6 +115,7 @@ sub addPhotoField { #------------------------------------------------- sub addAvatarField { + print "\tAdding avatar field to User Profiles\n" unless ($quiet); ##Get profileCategoryId. my ($categoryId) = WebGUI::SQL->buildArray(q!select profileCategoryId from userProfileCategory where categoryName='WebGUI::International::get(449,"WebGUI");';!); ##Get last sequence number @@ -125,6 +127,7 @@ sub addAvatarField { #------------------------------------------------- sub addEnableAvatarColumn { + print "\tAdding enableAvatar column to Collaborations\n" unless ($quiet); WebGUI::SQL->write('ALTER TABLE Collaboration ADD COLUMN avatarsEnabled int(11) NOT NULL DEFAULT 0'); }