Skip to content

Commit

Permalink
[PriceHistory][Migration] Add migration for new Channel and ChannelPr…
Browse files Browse the repository at this point in the history
…icing entity fields
  • Loading branch information
Rafikooo committed Mar 17, 2023
1 parent ea5c2e6 commit 0a98a1e
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/Sylius/Bundle/CoreBundle/Migrations/Version20230314073130.php
Original file line number Diff line number Diff line change
@@ -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');
}
}
35 changes: 35 additions & 0 deletions src/Sylius/Bundle/CoreBundle/Migrations/Version20230314073215.php
Original file line number Diff line number Diff line change
@@ -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');
}
}

0 comments on commit 0a98a1e

Please sign in to comment.