fix: creates new column with default value false

pull/173/head
Jonas 2021-07-30 10:03:32 +02:00 committed by GitHub
parent 06976096bc
commit 1ecbc6fe45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class Version000000Date20210729200144 extends SimpleMigrationStep {
if (!$table->hasColumn('join_muted')) {
$table->addColumn('join_muted', 'boolean', [
'notnull' => false,
'default' => true
'default' => false
]);
}