fixed: Thingy Thing Checkbox/Checklist/Selectbox/Selectlist limitations
This commit is contained in:
parent
82056c66aa
commit
a622b0d859
2 changed files with 9 additions and 0 deletions
|
|
@ -48,6 +48,7 @@
|
|||
- added: Commit Version Tag screen shows revisions in the tag
|
||||
- added: Ability to enable/disable Thread archiving on a per-Collaboration
|
||||
basis
|
||||
- fixed: Thingy Thing Checkbox/Checklist/Selectbox/Selectlist limitations
|
||||
|
||||
|
||||
7.5.10
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@ mergeProductsWithCommerce($session);
|
|||
addCaptchaToDataForm( $session );
|
||||
addArchiveEnabledToCollaboration( $session );
|
||||
addShelf( $session );
|
||||
modifyThingyPossibleValues( $session );
|
||||
|
||||
finish($session); # this line required
|
||||
|
||||
|
|
@ -609,6 +610,13 @@ CREATE TABLE paymentGateway (
|
|||
EOSQL
|
||||
}
|
||||
|
||||
#-------------------------------------------------
|
||||
sub modifyThingyPossibleValues {
|
||||
my $session = shift;
|
||||
print "\tModify data type of Thingy field's possible Values property.\n" unless ($quiet);
|
||||
$session->db->write("alter table Thingy_fields modify possibleValues text");
|
||||
}
|
||||
|
||||
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue