<?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 Version20231115093041 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 email ADD user_id INT DEFAULT NULL, ADD user_survey_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE email ADD CONSTRAINT FK_E7927C74A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE email ADD CONSTRAINT FK_E7927C74B31EDD79 FOREIGN KEY (user_survey_id) REFERENCES user_survey (id)');
$this->addSql('CREATE INDEX IDX_E7927C74A76ED395 ON email (user_id)');
$this->addSql('CREATE INDEX IDX_E7927C74B31EDD79 ON email (user_survey_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE email DROP FOREIGN KEY FK_E7927C74A76ED395');
$this->addSql('ALTER TABLE email DROP FOREIGN KEY FK_E7927C74B31EDD79');
$this->addSql('DROP INDEX IDX_E7927C74A76ED395 ON email');
$this->addSql('DROP INDEX IDX_E7927C74B31EDD79 ON email');
$this->addSql('ALTER TABLE email DROP user_id, DROP user_survey_id');
}
}