<?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 Version20220727085323 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('CREATE TABLE zone (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
// $this->addSql('ALTER TABLE rank_category ADD CONSTRAINT FK_830BA59C190A1B68 FOREIGN KEY (corps_id) REFERENCES corps (id)');
// $this->addSql('CREATE INDEX IDX_830BA59C190A1B68 ON rank_category (corps_id)');
// $this->addSql('ALTER TABLE respondent ADD zone_id INT NOT NULL');
$this->addSql('ALTER TABLE respondent ADD CONSTRAINT FK_409B51509F2C3FAB FOREIGN KEY (zone_id) REFERENCES zone (id)');
$this->addSql('CREATE INDEX IDX_409B51509F2C3FAB ON respondent (zone_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE respondent DROP FOREIGN KEY FK_409B51509F2C3FAB');
$this->addSql('DROP TABLE zone');
$this->addSql('ALTER TABLE rank_category DROP FOREIGN KEY FK_830BA59C190A1B68');
$this->addSql('DROP INDEX IDX_830BA59C190A1B68 ON rank_category');
$this->addSql('DROP INDEX IDX_409B51509F2C3FAB ON respondent');
$this->addSql('ALTER TABLE respondent DROP zone_id');
}
}