mirror of https://github.com/sualko/cloud_bbb
fix: creates new column with default value false
parent
06976096bc
commit
1ecbc6fe45
|
@ -30,7 +30,7 @@ class Version000000Date20210729200144 extends SimpleMigrationStep {
|
||||||
if (!$table->hasColumn('join_muted')) {
|
if (!$table->hasColumn('join_muted')) {
|
||||||
$table->addColumn('join_muted', 'boolean', [
|
$table->addColumn('join_muted', 'boolean', [
|
||||||
'notnull' => false,
|
'notnull' => false,
|
||||||
'default' => true
|
'default' => false
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue