Sylius/app/migrations/Version20170109143010.php
2023-06-15 07:06:38 +02:00

43 lines
1.2 KiB
PHP

<?php
/*
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Sylius\Bundle\CoreBundle\Doctrine\Migrations\AbstractMigration;
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
class Version20170109143010 extends AbstractMigration implements ContainerAwareInterface
{
/** @var ContainerInterface */
private $container;
public function setContainer(ContainerInterface $container = null)
{
$this->container = $container;
}
public function up(Schema $schema): void
{
$defaultLocale = $this->container->getParameter('locale');
$this->addSql('ALTER TABLE sylius_product_attribute_value ADD locale_code VARCHAR(255) NOT NULL');
$this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "' . $defaultLocale . '"');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE sylius_product_attribute_value DROP locale_code');
}
}