migrations/Version20220825140539.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 Version20220825140539 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 joker (id INT AUTO_INCREMENT NOT NULL, joker_rule_id INT NOT NULL, team_id INT NOT NULL, quantity INT NOT NULL, INDEX IDX_94E6D4979E5401DD (joker_rule_id), INDEX IDX_94E6D497296CD8AE (team_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE joker_item (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE joker_rule (id INT AUTO_INCREMENT NOT NULL, joker_item_id INT NOT NULL, session_id INT NOT NULL, default_quantity INT NOT NULL, max_quantity INT NOT NULL, INDEX IDX_69AFEA15F87550D2 (joker_item_id), INDEX IDX_69AFEA15613FECDF (session_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE joker ADD CONSTRAINT FK_94E6D4979E5401DD FOREIGN KEY (joker_rule_id) REFERENCES joker_rule (id)');
  22.         $this->addSql('ALTER TABLE joker ADD CONSTRAINT FK_94E6D497296CD8AE FOREIGN KEY (team_id) REFERENCES team (id)');
  23.         $this->addSql('ALTER TABLE joker_rule ADD CONSTRAINT FK_69AFEA15F87550D2 FOREIGN KEY (joker_item_id) REFERENCES joker_item (id)');
  24.         $this->addSql('ALTER TABLE joker_rule ADD CONSTRAINT FK_69AFEA15613FECDF FOREIGN KEY (session_id) REFERENCES session (id)');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE joker_rule DROP FOREIGN KEY FK_69AFEA15F87550D2');
  30.         $this->addSql('ALTER TABLE joker DROP FOREIGN KEY FK_94E6D4979E5401DD');
  31.         $this->addSql('DROP TABLE joker');
  32.         $this->addSql('DROP TABLE joker_item');
  33.         $this->addSql('DROP TABLE joker_rule');
  34.     }
  35. }