migrations/Version20221012081813.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 Version20221012081813 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 categories_bundle__category (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', parent_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', root_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', name VARCHAR(255) NOT NULL, description LONGTEXT DEFAULT NULL, lvl INT NOT NULL, lft INT NOT NULL, rgt INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, is_active TINYINT(1) DEFAULT 1 NOT NULL, INDEX IDX_5504FB5727ACA70 (parent_id), INDEX IDX_5504FB579066886 (root_id), INDEX IDX_5504FB5B03A8386 (created_by_id), INDEX IDX_5504FB5896DBBDE (updated_by_id), INDEX IDX_5504FB5C76F1F52 (deleted_by_id), INDEX name (name), INDEX is_active (is_active), INDEX deleted_at (deleted_at), INDEX created_at (created_at), INDEX updated_at (updated_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE categories_bundle__category_context (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', category_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', context_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', INDEX IDX_7E2E3ED712469DE2 (category_id), INDEX IDX_7E2E3ED76B00C1CF (context_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE categories_bundle__category_product (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', category_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', product_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, is_default TINYINT(1) NOT NULL, INDEX IDX_4F39BF0412469DE2 (category_id), INDEX IDX_4F39BF044584665A (product_id), INDEX IDX_4F39BF04B03A8386 (created_by_id), INDEX IDX_4F39BF04896DBBDE (updated_by_id), INDEX IDX_4F39BF04C76F1F52 (deleted_by_id), INDEX is_default (is_default), INDEX deleted_at (deleted_at), INDEX created_at (created_at), INDEX updated_at (updated_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('CREATE TABLE categories_bundle__category_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_FAB0FDE4232D562B (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');
  22.         $this->addSql('ALTER TABLE categories_bundle__category ADD CONSTRAINT FK_5504FB5727ACA70 FOREIGN KEY (parent_id) REFERENCES categories_bundle__category (id)');
  23.         $this->addSql('ALTER TABLE categories_bundle__category ADD CONSTRAINT FK_5504FB579066886 FOREIGN KEY (root_id) REFERENCES categories_bundle__category (id)');
  24.         $this->addSql('ALTER TABLE categories_bundle__category ADD CONSTRAINT FK_5504FB5B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  25.         $this->addSql('ALTER TABLE categories_bundle__category ADD CONSTRAINT FK_5504FB5896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  26.         $this->addSql('ALTER TABLE categories_bundle__category ADD CONSTRAINT FK_5504FB5C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  27.         $this->addSql('ALTER TABLE categories_bundle__category_context ADD CONSTRAINT FK_7E2E3ED712469DE2 FOREIGN KEY (category_id) REFERENCES categories_bundle__category (id)');
  28.         $this->addSql('ALTER TABLE categories_bundle__category_context ADD CONSTRAINT FK_7E2E3ED76B00C1CF FOREIGN KEY (context_id) REFERENCES context (id)');
  29.         $this->addSql('ALTER TABLE categories_bundle__category_product ADD CONSTRAINT FK_4F39BF0412469DE2 FOREIGN KEY (category_id) REFERENCES categories_bundle__category (id)');
  30.         $this->addSql('ALTER TABLE categories_bundle__category_product ADD CONSTRAINT FK_4F39BF044584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  31.         $this->addSql('ALTER TABLE categories_bundle__category_product ADD CONSTRAINT FK_4F39BF04B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  32.         $this->addSql('ALTER TABLE categories_bundle__category_product ADD CONSTRAINT FK_4F39BF04896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  33.         $this->addSql('ALTER TABLE categories_bundle__category_product ADD CONSTRAINT FK_4F39BF04C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  34.         $this->addSql('ALTER TABLE categories_bundle__category_translations ADD CONSTRAINT FK_FAB0FDE4232D562B FOREIGN KEY (object_id) REFERENCES categories_bundle__category (id) ON DELETE CASCADE');
  35.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD delivery_note_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', ADD delivery_note_line_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  36.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD CONSTRAINT FK_11E6623A2CF3B78B FOREIGN KEY (delivery_note_id) REFERENCES sales_bundle__delivery_note (id)');
  37.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement ADD CONSTRAINT FK_11E6623A535E48DC FOREIGN KEY (delivery_note_line_id) REFERENCES sales_bundle__delivery_note_line (id)');
  38.         $this->addSql('CREATE INDEX IDX_11E6623A2CF3B78B ON stocks_bundle__stock_movement (delivery_note_id)');
  39.         $this->addSql('CREATE INDEX IDX_11E6623A535E48DC ON stocks_bundle__stock_movement (delivery_note_line_id)');
  40.     }
  41.     public function down(Schema $schema): void
  42.     {
  43.         // this down() migration is auto-generated, please modify it to your needs
  44.         $this->addSql('ALTER TABLE categories_bundle__category DROP FOREIGN KEY FK_5504FB5727ACA70');
  45.         $this->addSql('ALTER TABLE categories_bundle__category DROP FOREIGN KEY FK_5504FB579066886');
  46.         $this->addSql('ALTER TABLE categories_bundle__category DROP FOREIGN KEY FK_5504FB5B03A8386');
  47.         $this->addSql('ALTER TABLE categories_bundle__category DROP FOREIGN KEY FK_5504FB5896DBBDE');
  48.         $this->addSql('ALTER TABLE categories_bundle__category DROP FOREIGN KEY FK_5504FB5C76F1F52');
  49.         $this->addSql('ALTER TABLE categories_bundle__category_context DROP FOREIGN KEY FK_7E2E3ED712469DE2');
  50.         $this->addSql('ALTER TABLE categories_bundle__category_context DROP FOREIGN KEY FK_7E2E3ED76B00C1CF');
  51.         $this->addSql('ALTER TABLE categories_bundle__category_product DROP FOREIGN KEY FK_4F39BF0412469DE2');
  52.         $this->addSql('ALTER TABLE categories_bundle__category_product DROP FOREIGN KEY FK_4F39BF044584665A');
  53.         $this->addSql('ALTER TABLE categories_bundle__category_product DROP FOREIGN KEY FK_4F39BF04B03A8386');
  54.         $this->addSql('ALTER TABLE categories_bundle__category_product DROP FOREIGN KEY FK_4F39BF04896DBBDE');
  55.         $this->addSql('ALTER TABLE categories_bundle__category_product DROP FOREIGN KEY FK_4F39BF04C76F1F52');
  56.         $this->addSql('ALTER TABLE categories_bundle__category_translations DROP FOREIGN KEY FK_FAB0FDE4232D562B');
  57.         $this->addSql('DROP TABLE categories_bundle__category');
  58.         $this->addSql('DROP TABLE categories_bundle__category_context');
  59.         $this->addSql('DROP TABLE categories_bundle__category_product');
  60.         $this->addSql('DROP TABLE categories_bundle__category_translations');
  61.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP FOREIGN KEY FK_11E6623A2CF3B78B');
  62.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP FOREIGN KEY FK_11E6623A535E48DC');
  63.         $this->addSql('DROP INDEX IDX_11E6623A2CF3B78B ON stocks_bundle__stock_movement');
  64.         $this->addSql('DROP INDEX IDX_11E6623A535E48DC ON stocks_bundle__stock_movement');
  65.         $this->addSql('ALTER TABLE stocks_bundle__stock_movement DROP delivery_note_id, DROP delivery_note_line_id');
  66.     }
  67. }