[PriceHistory][Migration] Add migration for new Channel and ChannelPricing entity fields

This commit is contained in:
Rafikooo 2023-03-14 14:20:13 +01:00
parent ea5c2e6148
commit 0a98a1eb80
No known key found for this signature in database
GPG key ID: 4A26D8327BC2442B
2 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,35 @@
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* 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\Bundle\CoreBundle\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230314073130 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add lowest_price_before_discount column to sylius_channel_pricing table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE sylius_channel_pricing ADD lowest_price_before_discount INT DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE sylius_channel_pricing DROP lowest_price_before_discount');
}
}

View file

@ -0,0 +1,35 @@
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* 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\Bundle\CoreBundle\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230314073215 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add lowest_price_for_discounted_products_checking_period column to sylius_channel table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE sylius_channel ADD lowest_price_for_discounted_products_checking_period TINYINT(1) DEFAULT 30 NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE sylius_channel DROP lowest_price_for_discounted_products_checking_period');
}
}