added rfe #740: Thingy Pre-Text

This commit is contained in:
Yung Han Khoe 2008-10-20 16:08:09 +00:00
parent 0b21273065
commit 9e2ec505c0
7 changed files with 54 additions and 7 deletions

View file

@ -9,6 +9,7 @@
- Fixed a limit bug in the asset discovery service.
- Fixed #8853: link to manageWorkflows is broken
- Fixed #8890: meta_loop in post form not working (United Knowledge)
- rfe #740: Thingy Pre-Text (SDH Consulting Group)
7.6.1
- changed: the list of extensions for the export system to pass through

View file

@ -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 --------------------------------