mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
68 lines
1.8 KiB
PHP
68 lines
1.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkMigrations;
|
|
|
|
use Doctrine\DBAL\DBALException;
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\DBAL\Schema\SchemaException;
|
|
use Doctrine\DBAL\Schema\Table;
|
|
use Doctrine\DBAL\Types\Type;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
/**
|
|
* Auto-generated Migration: Please modify to your needs!
|
|
*/
|
|
final class Version20181020060559 extends AbstractMigration
|
|
{
|
|
private const COLUMNS = [
|
|
'countryCode' => 'country_code',
|
|
'countryName' => 'country_name',
|
|
'regionName' => 'region_name',
|
|
'cityName' => 'city_name',
|
|
];
|
|
|
|
/**
|
|
* @param Schema $schema
|
|
* @throws SchemaException
|
|
*/
|
|
public function up(Schema $schema): void
|
|
{
|
|
$this->createColumns($schema->getTable('visit_locations'), self::COLUMNS);
|
|
}
|
|
|
|
private function createColumns(Table $visitLocations, array $columnNames): void
|
|
{
|
|
foreach ($columnNames as $name) {
|
|
if (! $visitLocations->hasColumn($name)) {
|
|
$visitLocations->addColumn($name, Type::STRING, ['notnull' => false]);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @throws SchemaException
|
|
* @throws DBALException
|
|
*/
|
|
public function postUp(Schema $schema): void
|
|
{
|
|
$visitLocations = $schema->getTable('visit_locations');
|
|
|
|
// If the camel case columns do not exist, do nothing
|
|
if (! $visitLocations->hasColumn('countryCode')) {
|
|
return;
|
|
}
|
|
|
|
$qb = $this->connection->createQueryBuilder();
|
|
$qb->update('visit_locations');
|
|
foreach (self::COLUMNS as $camelCaseName => $snakeCaseName) {
|
|
$qb->set($snakeCaseName, $camelCaseName);
|
|
}
|
|
$qb->execute();
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
// No down
|
|
}
|
|
}
|