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 ----