diff --git a/lib/Migration/Version000000Date20230727145600.php b/lib/Migration/Version000000Date20230727145600.php new file mode 100644 index 0000000..132cdf0 --- /dev/null +++ b/lib/Migration/Version000000Date20230727145600.php @@ -0,0 +1,36 @@ +hasTable('bbb_rooms')) { + $table = $schema->getTable('bbb_rooms'); + + if ($table->hasColumn('welcome') && $table->getColumn('welcome')->getNotnull()) { + $table->getColumn('welcome')->setNotnull(false); + } + } + + return null; + } +}