Skip to content

Commit

Permalink
fix(install): upgrade to 2.7 misses range for select and textarea
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed Aug 22, 2019
1 parent 0e15eac commit c5ee7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/upgrade_to_2.7.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function upgrade(Migration $migration) {
);
$request = [
'FROM' => $table,
'WHERE' => ['fieldtype' => ['float', 'integer', 'checkboxes', 'multiselect', 'text']]
'WHERE' => ['fieldtype' => ['float', 'integer', 'checkboxes', 'select', 'multiselect', 'text', 'textarea']]
];
foreach ($DB->request($request) as $row) {
$id = $row['id'];
Expand Down

0 comments on commit c5ee7d1

Please sign in to comment.