<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220617141045 extends AbstractMigration
{
public function getDescription(): string
{
return 'Remove receive_newsletter and receive_newsletter_conditions to customer table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE customer DROP receive_newsletter, DROP receive_newsletter_conditions');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE customer ADD receive_newsletter INT(1) DEFAULT 0, ADD receive_newsletter_conditions INT(1) DEFAULT 0');
}
}