mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
101 lines
2.8 KiB
PHP
101 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\Exception;
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
use function Functional\some;
|
|
|
|
final class Version20200105165647 extends AbstractMigration
|
|
{
|
|
private const COLUMNS = ['lat' => 'latitude', 'lon' => 'longitude'];
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function preUp(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
$this->skipIf(some(
|
|
self::COLUMNS,
|
|
fn (string $v, string $newColName) => $visitLocations->hasColumn($newColName),
|
|
), 'New columns already exist');
|
|
|
|
foreach (self::COLUMNS as $columnName) {
|
|
$qb = $this->connection->createQueryBuilder();
|
|
$qb->update('visit_locations')
|
|
->set($columnName, ':zeroValue')
|
|
->where($qb->expr()->orX(
|
|
$qb->expr()->eq($columnName, ':emptyString'),
|
|
$qb->expr()->isNull($columnName),
|
|
))
|
|
->setParameters([
|
|
'zeroValue' => '0',
|
|
'emptyString' => '',
|
|
])
|
|
->execute();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function up(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
|
|
foreach (self::COLUMNS as $newName => $oldName) {
|
|
$visitLocations->addColumn($newName, Types::FLOAT, [
|
|
'default' => '0.0',
|
|
]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function postUp(Schema $schema): void
|
|
{
|
|
$platformName = $this->connection->getDatabasePlatform()->getName();
|
|
$castType = $platformName === 'postgres' ? 'DOUBLE PRECISION' : 'DECIMAL(9,2)';
|
|
|
|
foreach (self::COLUMNS as $newName => $oldName) {
|
|
$qb = $this->connection->createQueryBuilder();
|
|
$qb->update('visit_locations')
|
|
->set($newName, 'CAST(' . $oldName . ' AS ' . $castType . ')')
|
|
->execute();
|
|
}
|
|
}
|
|
|
|
public function preDown(Schema $schema): void
|
|
{
|
|
foreach (self::COLUMNS as $newName => $oldName) {
|
|
$qb = $this->connection->createQueryBuilder();
|
|
$qb->update('visit_locations')
|
|
->set($oldName, $newName)
|
|
->execute();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function down(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
|
|
foreach (self::COLUMNS as $colName => $oldName) {
|
|
$visitLocations->dropColumn($colName);
|
|
}
|
|
}
|
|
|
|
public function isTransactional(): bool
|
|
{
|
|
return $this->connection->getDatabasePlatform()->getName() !== 'mysql';
|
|
}
|
|
}
|