fix: Couple Calendar fixes. Some Calendar code formatting changes
This commit is contained in:
parent
32db4c5bf3
commit
dd33c3e36f
4 changed files with 1285 additions and 1274 deletions
|
|
@ -21,6 +21,8 @@ my $quiet; # this line required
|
|||
my $session = start(); # this line required
|
||||
|
||||
# upgrade functions go here
|
||||
fixCalendarFeedsLastUpdatedField();
|
||||
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
|
@ -33,6 +35,13 @@ finish($session); # this line required
|
|||
#}
|
||||
|
||||
|
||||
##-------------------------------------------------
|
||||
sub fixCalendarFeedsLastUpdatedField {
|
||||
my $session = shift;
|
||||
print "\tFixing Calendar Feeds lastUpdated field.\n" unless ($quiet);
|
||||
$session->db->write("alter table Calendar_feeds modify column lastUpdated datetime");
|
||||
}
|
||||
|
||||
|
||||
# ---- DO NOT EDIT BELOW THIS LINE ----
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue