added Thingy field-copy function and changed thingy field pretext and subtext
This commit is contained in:
commit
9a88b8756e
4 changed files with 70 additions and 25 deletions
|
|
@ -34,6 +34,7 @@ my $session = start(); # this line required
|
|||
adSkuInstall($session);
|
||||
addWelcomeMessageTemplateToSettings( $session );
|
||||
addStatisticsCacheTimeoutToMatrix( $session );
|
||||
changeThingyFieldsPreTextAndSubtext( $session );
|
||||
|
||||
# image mods
|
||||
addImageAnnotation($session);
|
||||
|
|
@ -81,6 +82,15 @@ sub addStatisticsCacheTimeoutToMatrix{
|
|||
print "Done.\n" unless $quiet;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
sub changeThingyFieldsPreTextAndSubtext{
|
||||
my $session = shift;
|
||||
print "\tChanging pretext and subtext fields in Thingy_fields table... \n" unless $quiet;
|
||||
$session->db->write("alter table Thingy_fields change subtext subtext text, change pretext pretext text;");
|
||||
print "Done.\n" unless $quiet;
|
||||
}
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Describe what our function does
|
||||
sub adSkuInstall {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue