added skipNotification column to assets

This commit is contained in:
Frank Dillon 2007-02-02 20:03:17 +00:00
parent ef07faa506
commit a778dd3bbe

View file

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