migrations/Version20240620065729.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 Version20240620065729 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 trophy_count (id INT AUTO_INCREMENT NOT NULL, trophy_type_id INT DEFAULT NULL, school_class_client_id INT DEFAULT NULL, item_id VARCHAR(50) NOT NULL, num_visits INT NOT NULL, update_at DATETIME NOT NULL, INDEX IDX_EE452C551622AE51 (trophy_type_id), INDEX IDX_EE452C55EC912EB2 (school_class_client_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE trophy_item_type (id INT AUTO_INCREMENT NOT NULL, type_name VARCHAR(191) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE trophy_count ADD CONSTRAINT FK_EE452C551622AE51 FOREIGN KEY (trophy_type_id) REFERENCES trophy_item_type (id)');
  21.         $this->addSql('ALTER TABLE trophy_count ADD CONSTRAINT FK_EE452C55EC912EB2 FOREIGN KEY (school_class_client_id) REFERENCES school_class_client (id)');
  22.         $this->addSql('ALTER TABLE visit_count DROP FOREIGN KEY FK_F06CBF03EC912EB2');
  23.         $this->addSql('ALTER TABLE visit_count DROP FOREIGN KEY FK_F06CBF0393C58854');
  24.         $this->addSql('DROP TABLE visit_count');
  25.         $this->addSql('DROP TABLE visit_type');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('CREATE TABLE visit_count (id INT AUTO_INCREMENT NOT NULL, visit_type_id INT DEFAULT NULL, school_class_client_id INT DEFAULT NULL, item_id VARCHAR(50) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, num_visits INT NOT NULL, update_at DATETIME NOT NULL, INDEX IDX_F06CBF03EC912EB2 (school_class_client_id), INDEX IDX_F06CBF0393C58854 (visit_type_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  31.         $this->addSql('CREATE TABLE visit_type (id INT AUTO_INCREMENT NOT NULL, type_name VARCHAR(191) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  32.         $this->addSql('ALTER TABLE visit_count ADD CONSTRAINT FK_F06CBF03EC912EB2 FOREIGN KEY (school_class_client_id) REFERENCES school_class_client (id)');
  33.         $this->addSql('ALTER TABLE visit_count ADD CONSTRAINT FK_F06CBF0393C58854 FOREIGN KEY (visit_type_id) REFERENCES visit_type (id)');
  34.         $this->addSql('ALTER TABLE trophy_count DROP FOREIGN KEY FK_EE452C551622AE51');
  35.         $this->addSql('ALTER TABLE trophy_count DROP FOREIGN KEY FK_EE452C55EC912EB2');
  36.         $this->addSql('DROP TABLE trophy_count');
  37.         $this->addSql('DROP TABLE trophy_item_type');
  38.     }
  39. }