Remove an old database column from EMS mark 1.

This commit is contained in:
Colin Kuskie 2010-05-20 15:58:33 -07:00
parent 77e331a129
commit ce8b1dc63a
2 changed files with 11 additions and 1 deletions

View file

@ -32,6 +32,7 @@ my $session = start(); # this line required
# upgrade functions go here
fixConvertUTCMacroName($session);
dropOldEMSTableColumn($session);
finish($session); # this line required
@ -57,6 +58,16 @@ sub fixConvertUTCMacroName {
print "DONE!\n" unless $quiet;
}
#----------------------------------------------------------------------------
# Describe what our function does
sub dropOldEMSTableColumn {
my $session = shift;
print "\tDrop an old column from the EventMangementSystem table that is no longer used... " unless $quiet;
$session->db->write(q|ALTER TABLE EventManagementSystem DROP COLUMN groupToApproveEvents|);
# and here's our code
print "DONE!\n" unless $quiet;
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------