Allow nunlable to booleans needed due NC 22 changes.

This commit is contained in:
Matias De lellis
2021-07-08 11:58:24 -03:00
parent fe94cfc5cf
commit 551f1d8ce4
6 changed files with 51 additions and 79 deletions

View File

@@ -26,7 +26,7 @@ class Version000205Date20200604122312 extends SimpleMigrationStep {
$table = $schema->getTable('quicknotes_notes');
$table->addColumn('pinned', 'boolean', [
'notnull' => true,
'notnull' => false,
'default' => false,
]);
return $schema;