. */ namespace OCA\Memories\Migration; use OCP\DB\ISchemaWrapper; use OCP\DB\Types; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; /** * Auto-generated migration step: Please modify to your needs! */ class Version502000Date20230530052850 extends SimpleMigrationStep { /** * @param \Closure(): ISchemaWrapper $schemaClosure */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {} /** * @param \Closure(): ISchemaWrapper $schemaClosure */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options): ?ISchemaWrapper { /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('memories_places'); $table->addColumn('mark', Types::BOOLEAN, [ 'notnull' => false, 'default' => false, ]); $table->addIndex(['osm_id', 'mark'], 'memories_places_id_mk_idx'); return $schema; } /** * @param \Closure(): ISchemaWrapper $schemaClosure */ public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {} }