<?php
declare(strict_types=1);
namespace PPSDKDoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220606173227_GeneralContestDeepUrl extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE general_contests ADD linked_shop_redirect_deep_url VARCHAR(392) NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE general_contests DROP linked_shop_redirect_deep_url');
}
}