<?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 Version20230309104114 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE customer ADD eFakture TINYINT(1) NOT NULL');
$this->addSql('ALTER TABLE generator_options ADD customer_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE generator_options ADD CONSTRAINT FK_66F18E5F9395C3F3 FOREIGN KEY (customer_id) REFERENCES customer (id) ON DELETE CASCADE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE customer DROP eFakture');
$this->addSql('ALTER TABLE generator_options DROP FOREIGN KEY FK_66F18E5F9395C3F3');
$this->addSql('DROP INDEX IDX_66F18E5F9395C3F3 ON generator_options');
$this->addSql('ALTER TABLE generator_options DROP customer_id');
}
}