2023-05-30 06:12:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2023-09-12 17:56:59 +00:00
|
|
|
public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {}
|
2023-05-30 06:12:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure(): ISchemaWrapper $schemaClosure
|
|
|
|
*/
|
|
|
|
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options): ?ISchemaWrapper
|
|
|
|
{
|
|
|
|
/** @var ISchemaWrapper $schema */
|
|
|
|
$schema = $schemaClosure();
|
|
|
|
|
|
|
|
$table = $schema->getTable('memories_places');
|
|
|
|
|
2023-10-07 15:45:35 +00:00
|
|
|
if (!$table->hasColumn('mark')) {
|
|
|
|
$table->addColumn('mark', Types::BOOLEAN, [
|
|
|
|
'notnull' => false,
|
|
|
|
'default' => false,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$table->hasIndex('memories_places_id_mk_idx')) {
|
|
|
|
$table->addIndex(['osm_id', 'mark'], 'memories_places_id_mk_idx');
|
|
|
|
}
|
2023-05-30 06:12:49 +00:00
|
|
|
|
|
|
|
return $schema;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param \Closure(): ISchemaWrapper $schemaClosure
|
|
|
|
*/
|
2023-09-12 17:56:59 +00:00
|
|
|
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {}
|
2023-05-30 06:12:49 +00:00
|
|
|
}
|