migrations/Version20231113080346.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CoreMigrations;
  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 Version20231113080346 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 tax_rule_translations (id INT AUTO_INCREMENT NOT NULL, object_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', locale VARCHAR(8) NOT NULL, field VARCHAR(32) NOT NULL, content LONGTEXT DEFAULT NULL, INDEX IDX_ABF78759232D562B (object_id), FULLTEXT INDEX content (content), UNIQUE INDEX lookup_unique_idx (locale, object_id, field), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE tax_translations (id INT AUTO_INCREMENT NOT NULL, object_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', locale VARCHAR(8) NOT NULL, field VARCHAR(32) NOT NULL, content LONGTEXT DEFAULT NULL, INDEX IDX_5687791F232D562B (object_id), FULLTEXT INDEX content (content), UNIQUE INDEX lookup_unique_idx (locale, object_id, field), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE tax_rule_translations ADD CONSTRAINT FK_ABF78759232D562B FOREIGN KEY (object_id) REFERENCES tax_rule (id) ON DELETE CASCADE');
  21.         $this->addSql('ALTER TABLE tax_translations ADD CONSTRAINT FK_5687791F232D562B FOREIGN KEY (object_id) REFERENCES tax (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE products_bundle__declination CHANGE options options LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\'');
  23.         $this->addSql('ALTER TABLE team ADD position INT DEFAULT NULL');
  24.         $this->addSql('CREATE INDEX position ON team (position)');
  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 tax_rule_translations DROP FOREIGN KEY FK_ABF78759232D562B');
  30.         $this->addSql('ALTER TABLE tax_translations DROP FOREIGN KEY FK_5687791F232D562B');
  31.         $this->addSql('DROP TABLE tax_rule_translations');
  32.         $this->addSql('DROP TABLE tax_translations');
  33.         $this->addSql('DROP INDEX position ON team');
  34.         $this->addSql('ALTER TABLE team DROP position');
  35.         $this->addSql('ALTER TABLE products_bundle__declination CHANGE options options LONGTEXT NOT NULL COLLATE `utf8mb4_bin`');
  36.     }
  37. }