mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 05:38:06 +03:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\DBALException;
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
use function Functional\none;
|
|
|
|
final class Version20200106215144 extends AbstractMigration
|
|
{
|
|
private const COLUMNS = ['latitude', 'longitude'];
|
|
|
|
/**
|
|
* @throws DBALException
|
|
*/
|
|
public function up(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
$this->skipIf(none(
|
|
self::COLUMNS,
|
|
fn (string $oldColName) => $visitLocations->hasColumn($oldColName),
|
|
), 'Old columns do not exist');
|
|
|
|
foreach (self::COLUMNS as $colName) {
|
|
$visitLocations->dropColumn($colName);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws DBALException
|
|
*/
|
|
public function down(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
|
|
foreach (self::COLUMNS as $colName) {
|
|
$visitLocations->addColumn($colName, Types::STRING, [
|
|
'notnull' => false,
|
|
]);
|
|
}
|
|
}
|
|
}
|