vendor/bluue/stocks-bundle/migrations/Version20240805143749.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace StocksBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20240805143749 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('CREATE TABLE stocks_bundle__stock_product_root_context (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', product_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', declination_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', stock_product_root_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', context_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)\', quantity INT NOT NULL, quantity_in_order INT NOT NULL, quantity_simulated INT NOT NULL, quantity_available INT NOT NULL, quantity_to_hold INT DEFAULT 0 NOT NULL, out_of_stock_limit INT DEFAULT NULL, not_send_oos_alert TINYINT(1) DEFAULT 0 NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_DF9F9A54584665A (product_id), INDEX IDX_DF9F9A59941A932 (declination_id), INDEX IDX_DF9F9A549760897 (stock_product_root_id), INDEX IDX_DF9F9A56B00C1CF (context_id), INDEX IDX_DF9F9A5B03A8386 (created_by_id), INDEX IDX_DF9F9A5896DBBDE (updated_by_id), INDEX IDX_DF9F9A5C76F1F52 (deleted_by_id), INDEX quantity (quantity), INDEX quantity_in_order (quantity_in_order), INDEX quantity_simulated (quantity_simulated), INDEX quantity_to_hold (quantity_to_hold), INDEX out_of_stock_limit (out_of_stock_limit), INDEX not_send_oos_alert (not_send_oos_alert), 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');
  11.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A54584665A FOREIGN KEY (product_id) REFERENCES products_bundle__product (id)');
  12.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A59941A932 FOREIGN KEY (declination_id) REFERENCES products_bundle__declination (id)');
  13.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A549760897 FOREIGN KEY (stock_product_root_id) REFERENCES stocks_bundle__stock_product_root (id)');
  14.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A56B00C1CF FOREIGN KEY (context_id) REFERENCES context (id)');
  15.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A5B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  16.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A5896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  17.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context ADD CONSTRAINT FK_DF9F9A5C76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  18.     }
  19.     public function down(Schema $schema): void
  20.     {
  21.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A54584665A');
  22.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A59941A932');
  23.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A549760897');
  24.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A56B00C1CF');
  25.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A5B03A8386');
  26.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A5896DBBDE');
  27.         $this->addSql('ALTER TABLE stocks_bundle__stock_product_root_context DROP FOREIGN KEY FK_DF9F9A5C76F1F52');
  28.         $this->addSql('DROP TABLE stocks_bundle__stock_product_root_context');
  29.     }
  30. }