added rfe #740: Thingy Pre-Text
This commit is contained in:
parent
0b21273065
commit
9e2ec505c0
7 changed files with 54 additions and 7 deletions
Binary file not shown.
|
|
@ -30,6 +30,7 @@ my $session = start(); # this line required
|
|||
|
||||
# upgrade functions go here
|
||||
repairManageWorkflows($session);
|
||||
addPreTextToThingyFields($session);
|
||||
finish($session); # this line required
|
||||
|
||||
|
||||
|
|
@ -55,6 +56,13 @@ sub repairManageWorkflows {
|
|||
print "DONE!\n" unless $quiet;
|
||||
}
|
||||
|
||||
sub addPreTextToThingyFields {
|
||||
my $session = shift;
|
||||
print "\tAdding a pre-text property to Thingy fields... " unless $quiet;
|
||||
$session->db->write('ALTER TABLE `Thingy_fields` ADD pretext varchar(255)');
|
||||
print "DONE!\n" unless $quiet;
|
||||
}
|
||||
|
||||
|
||||
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue