<?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 Version20220408113116 extends AbstractMigration
{
public function getDescription(): string
{
return 'The field store.ntf_id and assortment.delivery_method_id is a required link';
}
public function up(Schema $schema): void
{
// Drop and re-create the same foreign key before changing column.
$this->addSql('ALTER TABLE assortment DROP FOREIGN KEY FK_2A5E6D8B5DED75F5');
$this->addSql('ALTER TABLE assortment CHANGE delivery_method_id delivery_method_id CHAR(36) NOT NULL COMMENT \'(DC2Type:uuid)\'');
$this->addSql('ALTER TABLE assortment ADD CONSTRAINT FK_2A5E6D8B5DED75F5 FOREIGN KEY (delivery_method_id) REFERENCES store_delivery_method (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE store CHANGE ntf_id ntf_id VARCHAR(255) NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE assortment CHANGE delivery_method_id delivery_method_id CHAR(36) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
$this->addSql('ALTER TABLE store CHANGE ntf_id ntf_id VARCHAR(255) DEFAULT NULL');
}
public function isTransactional(): bool
{
return false;
}
}