<?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 Version20240613081358 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 game_millionaire_question (id INT AUTO_INCREMENT NOT NULL, game_id INT DEFAULT NULL, game_quiz_question_id INT DEFAULT NULL, round_number INT NOT NULL, created_at DATETIME NOT NULL, INDEX IDX_1EFD04CAE48FD905 (game_id), INDEX IDX_1EFD04CAF102203 (game_quiz_question_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE game_millionaire_question ADD CONSTRAINT FK_1EFD04CAE48FD905 FOREIGN KEY (game_id) REFERENCES game (id)');
$this->addSql('ALTER TABLE game_millionaire_question ADD CONSTRAINT FK_1EFD04CAF102203 FOREIGN KEY (game_quiz_question_id) REFERENCES game_quiz_question (id)');
$this->addSql('ALTER TABLE game_ctp_question ADD round_number INT NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE game_millionaire_question DROP FOREIGN KEY FK_1EFD04CAE48FD905');
$this->addSql('ALTER TABLE game_millionaire_question DROP FOREIGN KEY FK_1EFD04CAF102203');
$this->addSql('DROP TABLE game_millionaire_question');
$this->addSql('ALTER TABLE game_ctp_question DROP round_number');
}
}