migrations/Version20220416123353.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220416123353 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $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');
  19.         $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');
  20.         $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');
  21.         $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');
  22.         $this->addSql('ALTER TABLE roles ADD CONSTRAINT FK_B63E2EC774281A5E FOREIGN KEY (edition_id) REFERENCES editions (id)');
  23.         $this->addSql('ALTER TABLE roles ADD CONSTRAINT FK_B63E2EC7296CD8AE FOREIGN KEY (team_id) REFERENCES teams (id)');
  24.     }
  25.     public function down(Schema $schema): void
  26.     {
  27.         // this down() migration is auto-generated, please modify it to your needs
  28.         $this->addSql('ALTER TABLE roles DROP FOREIGN KEY FK_B63E2EC774281A5E');
  29.         $this->addSql('ALTER TABLE roles DROP FOREIGN KEY FK_B63E2EC7296CD8AE');
  30.         $this->addSql('DROP TABLE editions');
  31.         $this->addSql('DROP TABLE roles');
  32.         $this->addSql('DROP TABLE teams');
  33.         $this->addSql('DROP TABLE messenger_messages');
  34.     }
  35. }