<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240130162607 extends AbstractMigration
{
public function getDescription(): string
{
return 'Change outdoor safety to domain lang';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE outdoor_safety ADD domain_id INT DEFAULT NULL, ADD domain_lang_id INT DEFAULT NULL, DROP lang');
$this->addSql('ALTER TABLE outdoor_safety ADD CONSTRAINT FK_E8893969115F0EE5 FOREIGN KEY (domain_id) REFERENCES domain (id)');
$this->addSql('ALTER TABLE outdoor_safety ADD CONSTRAINT FK_E8893969E9F626BC FOREIGN KEY (domain_lang_id) REFERENCES domain_lang (id)');
$this->addSql('CREATE INDEX IDX_E8893969115F0EE5 ON outdoor_safety (domain_id)');
$this->addSql('CREATE INDEX IDX_E8893969E9F626BC ON outdoor_safety (domain_lang_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE outdoor_safety DROP FOREIGN KEY FK_E8893969115F0EE5');
$this->addSql('ALTER TABLE outdoor_safety DROP FOREIGN KEY FK_E8893969E9F626BC');
$this->addSql('DROP INDEX IDX_E8893969115F0EE5 ON outdoor_safety');
$this->addSql('DROP INDEX IDX_E8893969E9F626BC ON outdoor_safety');
$this->addSql('ALTER TABLE outdoor_safety ADD lang VARCHAR(2) DEFAULT \'en\' NOT NULL, DROP domain_id, DROP domain_lang_id');
}
}