several bug fixes

This commit is contained in:
JT Smith 2006-05-26 23:08:18 +00:00
parent 830934d46d
commit 5268ffda5c
4 changed files with 12 additions and 12 deletions

View file

@ -20,17 +20,17 @@ my $quiet; # this line required
my $session = start(); # this line required
# upgrade functions go here
fixCs();
finish($session); # this line required
##-------------------------------------------------
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about.\n" unless ($quiet);
# # and here's our code
#}
#-------------------------------------------------
sub fixCs {
my $session = shift;
print "\tFixing CS bugs.\n" unless ($quiet);
$session->db->write("alter table Thread change karmaRank karmaRank float(11,6)");
}