<?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 Version20230430161431 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 exercise_sorting (id INT AUTO_INCREMENT NOT NULL, kpi_id INT NOT NULL, name VARCHAR(32) NOT NULL, description LONGTEXT NOT NULL, question LONGTEXT NOT NULL, answer_a VARCHAR(32) NOT NULL, answer_b VARCHAR(32) NOT NULL, answer_c VARCHAR(32) NOT NULL, answer_d VARCHAR(32) NOT NULL, position INT NOT NULL, note LONGTEXT DEFAULT NULL, played INT NOT NULL, INDEX IDX_6BBA991BF50D1A5E (kpi_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE exercise_sorting ADD CONSTRAINT FK_6BBA991BF50D1A5E FOREIGN KEY (kpi_id) REFERENCES kpi (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE exercise_sorting');
}
}