mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
Merge pull request #18117 from nextcloud/backport/18027/stable15
[stable15] Incorrect integer value: '' for column 'password_invalid' while migra…
This commit is contained in:
commit
47ddfbac8d
1 changed files with 3 additions and 0 deletions
|
|
@ -383,6 +383,9 @@ class ConvertType extends Command implements CompletionAwareInterface {
|
|||
case Type::TEXT:
|
||||
$this->columnTypes[$tableName][$columnName] = IQueryBuilder::PARAM_LOB;
|
||||
break;
|
||||
case Type::BOOLEAN:
|
||||
$this->columnTypes[$tableName][$columnName] = IQueryBuilder::PARAM_BOOL;
|
||||
break;
|
||||
default:
|
||||
$this->columnTypes[$tableName][$columnName] = false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue