<?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 Version20220416123353 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 editions (id INT AUTO_INCREMENT NOT NULL, identifier VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE roles (id INT AUTO_INCREMENT NOT NULL, edition_id INT DEFAULT NULL, team_id INT DEFAULT NULL, identifier VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, first_night INT DEFAULT 0 NOT NULL, first_night_reminder LONGTEXT NOT NULL, other_night INT DEFAULT 0 NOT NULL, other_night_reminder LONGTEXT NOT NULL, reminders LONGTEXT NOT NULL COMMENT \'(DC2Type:array)\', reminders_global LONGTEXT NOT NULL COMMENT \'(DC2Type:array)\', setup TINYINT(1) DEFAULT 0 NOT NULL, ability LONGTEXT NOT NULL, image VARCHAR(255) DEFAULT \'\' NOT NULL, INDEX IDX_B63E2EC774281A5E (edition_id), INDEX IDX_B63E2EC7296CD8AE (team_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE teams (id INT AUTO_INCREMENT NOT NULL, identifier VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE messenger_messages (id BIGINT AUTO_INCREMENT NOT NULL, body LONGTEXT NOT NULL, headers LONGTEXT NOT NULL, queue_name VARCHAR(190) NOT NULL, created_at DATETIME NOT NULL, available_at DATETIME NOT NULL, delivered_at DATETIME DEFAULT NULL, INDEX IDX_75EA56E0FB7336F0 (queue_name), INDEX IDX_75EA56E0E3BD61CE (available_at), INDEX IDX_75EA56E016BA31DB (delivered_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE roles ADD CONSTRAINT FK_B63E2EC774281A5E FOREIGN KEY (edition_id) REFERENCES editions (id)');
$this->addSql('ALTER TABLE roles ADD CONSTRAINT FK_B63E2EC7296CD8AE FOREIGN KEY (team_id) REFERENCES teams (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE roles DROP FOREIGN KEY FK_B63E2EC774281A5E');
$this->addSql('ALTER TABLE roles DROP FOREIGN KEY FK_B63E2EC7296CD8AE');
$this->addSql('DROP TABLE editions');
$this->addSql('DROP TABLE roles');
$this->addSql('DROP TABLE teams');
$this->addSql('DROP TABLE messenger_messages');
}
}