mirror of https://github.com/sualko/cloud_bbb
43 lines
907 B
PHP
43 lines
907 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OCA\BigBlueButton\Migration;
|
||
|
|
||
|
use Closure;
|
||
|
use OCP\DB\ISchemaWrapper;
|
||
|
use OCP\Migration\IOutput;
|
||
|
use OCP\Migration\SimpleMigrationStep;
|
||
|
|
||
|
/**
|
||
|
* Auto-generated migration step: Please modify to your needs!
|
||
|
*/
|
||
|
class Version000000Date20220316151400 extends SimpleMigrationStep {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param IOutput $output
|
||
|
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||
|
* @param array $options
|
||
|
* @return null|ISchemaWrapper
|
||
|
*/
|
||
|
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
||
|
$schema = $schemaClosure();
|
||
|
|
||
|
if ($schema->hasTable('bbb_rooms')) {
|
||
|
$table = $schema->getTable('bbb_rooms');
|
||
|
|
||
|
if (!$table->hasColumn('running')) {
|
||
|
$table->addColumn('running', 'boolean', [
|
||
|
'notnull' => false,
|
||
|
'default' => false
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
return $schema;
|
||
|
}
|
||
|
|
||
|
return null;
|
||
|
}
|
||
|
}
|