hasTable('bbb_rooms')) { $table = $schema->getTable('bbb_rooms'); if (!$table->hasColumn('listen_only')) { $table->addColumn('listen_only', 'boolean', [ 'notnull' => false, 'default' => true ]); } if (!$table->hasColumn('media_check')) { $table->addColumn('media_check', 'boolean', [ 'notnull' => false, 'default' => true ]); } if (!$table->hasColumn('clean_layout')) { $table->addColumn('clean_layout', 'boolean', [ 'notnull' => false, 'default' => false ]); } return $schema; } return null; } }