. * */ namespace OCA\Talk\Migration; use Doctrine\DBAL\Types\Types; use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; class Version3003Date20180720162342 extends SimpleMigrationStep { /** * @param IOutput $output * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('talk_rooms'); if (!$table->hasColumn('object_type')) { $table->addColumn('object_type', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addColumn('object_id', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); } return $schema; } }