Added doAfterTimeLimit column to Survey table
This commit is contained in:
parent
c7b5fa366a
commit
2f04648cf7
1 changed files with 9 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ removeBrokenWorkflowInstances($session);
|
||||||
undotBinaryExtensions($session);
|
undotBinaryExtensions($session);
|
||||||
removeProcessRecurringPaymentsFromConfig($session);
|
removeProcessRecurringPaymentsFromConfig($session);
|
||||||
noSessionSwitch($session);
|
noSessionSwitch($session);
|
||||||
|
surveyDoAfterTimeLimit($session);
|
||||||
|
|
||||||
fixDottedAssetIds($session); ##This one should run last
|
fixDottedAssetIds($session); ##This one should run last
|
||||||
finish($session); # this line required
|
finish($session); # this line required
|
||||||
|
|
@ -82,6 +83,14 @@ sub undotBinaryExtensions {
|
||||||
print "DONE!\n" unless $quiet;
|
print "DONE!\n" unless $quiet;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
sub surveyDoAfterTimeLimit {
|
||||||
|
my $session = shift;
|
||||||
|
print "\tAdding column doAfterTimeLimit to Survey table... " unless $quiet;
|
||||||
|
$session->db->write('alter table Survey add doAfterTimeLimit char(22)');
|
||||||
|
print "DONE!\n" unless $quiet;
|
||||||
|
}
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
sub fixDottedAssetIds {
|
sub fixDottedAssetIds {
|
||||||
my $session = shift;
|
my $session = shift;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue