<?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 Version20220428105057 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 recompose (id INT AUTO_INCREMENT NOT NULL, inscription_id INT NOT NULL, evaluation_id INT NOT NULL, note DOUBLE PRECISION NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_93779A4A5DAC5993 (inscription_id), INDEX IDX_93779A4A456C5646 (evaluation_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE recompose ADD CONSTRAINT FK_93779A4A5DAC5993 FOREIGN KEY (inscription_id) REFERENCES inscription (id)');
$this->addSql('ALTER TABLE recompose ADD CONSTRAINT FK_93779A4A456C5646 FOREIGN KEY (evaluation_id) REFERENCES evaluation_recomposition (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE recompose');
}
}