Time Tracking fixes
This commit is contained in:
parent
4e4a3fa51c
commit
bddfe5fe13
1 changed files with 12 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ addAssetIndex();
|
||||||
fixCs();
|
fixCs();
|
||||||
fixCss();
|
fixCss();
|
||||||
fixSpectre();
|
fixSpectre();
|
||||||
|
fixTT();
|
||||||
|
|
||||||
finish($session); # this line required
|
finish($session); # this line required
|
||||||
|
|
||||||
|
|
@ -212,7 +213,18 @@ sub fixCs {
|
||||||
$session->db->write("update Thread set karmaRank=karma/karmaScale");
|
$session->db->write("update Thread set karmaRank=karma/karmaScale");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#-------------------------------------------------
|
||||||
|
sub fixTT {
|
||||||
|
print "\tUpdating the Time Tracking System.\n" unless ($quiet);
|
||||||
|
my $tableList = [
|
||||||
|
"alter table TT_wobject add pmIntegration integer not null default 0"
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach (@{$tableList}) {
|
||||||
|
$session->db->write($_);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
# ---- DO NOT EDIT BELOW THIS LINE ----
|
# ---- DO NOT EDIT BELOW THIS LINE ----
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue