From a778dd3bbe24fd31426c6622b395421ca3c548e0 Mon Sep 17 00:00:00 2001 From: Frank Dillon Date: Fri, 2 Feb 2007 20:03:17 +0000 Subject: [PATCH] added skipNotification column to assets --- docs/upgrades/upgrade_7.3.8-7.3.9.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/upgrades/upgrade_7.3.8-7.3.9.pl b/docs/upgrades/upgrade_7.3.8-7.3.9.pl index eab830465..d84dfeae9 100644 --- a/docs/upgrades/upgrade_7.3.8-7.3.9.pl +++ b/docs/upgrades/upgrade_7.3.8-7.3.9.pl @@ -66,6 +66,13 @@ sub addThreadRatingColumn { } } +##------------------------------------------------- +sub addSkipNotificationColumn { + my $session = shift; + print "\tAdding Skip Notification column to Assets\n" unless ($quiet); + $session->db->write("alter table assetData add skipNotification integer not null default 0"); +} + # ---- DO NOT EDIT BELOW THIS LINE ----