Skip to content

Commit 61e49d6

Browse files
committed
fix(install): upgrade to 2.7 misses range for select and textarea
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
1 parent 7f1e0c8 commit 61e49d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install/upgrade_to_2.7.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function upgrade(Migration $migration) {
169169
);
170170
$request = [
171171
'FROM' => $table,
172-
'WHERE' => ['fieldtype' => ['float', 'integer', 'checkboxes', 'multiselect', 'text']]
172+
'WHERE' => ['fieldtype' => ['float', 'integer', 'checkboxes', 'select', 'multiselect', 'text', 'textarea']]
173173
];
174174
foreach ($DB->request($request) as $row) {
175175
$id = $row['id'];

0 commit comments

Comments
 (0)