Initial commit: CloudOps infrastructure platform
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Mautic\Migrations;
|
||||
|
||||
use Doctrine\DBAL\Schema\Schema;
|
||||
use Mautic\CoreBundle\Doctrine\AbstractMauticMigration;
|
||||
|
||||
final class Version20230525202700 extends AbstractMauticMigration
|
||||
{
|
||||
public function up(Schema $schema): void
|
||||
{
|
||||
$oldAndNewValues = [
|
||||
'Niederosterreich' => 'Niederösterreich',
|
||||
'Oberosterreich' => 'Oberösterreich',
|
||||
'Geneva' => 'Genève',
|
||||
'Graubunden' => 'Graubünden',
|
||||
'Neuchatel' => 'Neuchâtel',
|
||||
'Sankt Gallen' => 'St. Gallen',
|
||||
'Zurich' => 'Zürich',
|
||||
'Baden-Wuerttemberg' => 'Baden-Württemberg',
|
||||
'Thueringen' => 'Thüringen',
|
||||
];
|
||||
|
||||
foreach ($oldAndNewValues as $old => $new) {
|
||||
$this->addSql("UPDATE `{$this->prefix}leads` SET `state` = '{$new}' WHERE `state` = '{$old}'");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user