migrations/Version20231218104145.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 Version20231218104145 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 menu (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)\', name VARCHAR(255) NOT NULL, position INT DEFAULT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_7D053A93B03A8386 (created_by_id), INDEX IDX_7D053A93896DBBDE (updated_by_id), INDEX name (name), INDEX position (position), 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 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');
  20.         $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');
  21.         $this->addSql('ALTER TABLE menu ADD CONSTRAINT FK_7D053A93B03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  22.         $this->addSql('ALTER TABLE menu ADD CONSTRAINT FK_7D053A93896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  23.         $this->addSql('ALTER TABLE tax_rule_translations ADD CONSTRAINT FK_ABF78759232D562B FOREIGN KEY (object_id) REFERENCES tax_rule (id) ON DELETE CASCADE');
  24.         $this->addSql('ALTER TABLE tax_translations ADD CONSTRAINT FK_5687791F232D562B FOREIGN KEY (object_id) REFERENCES tax (id) ON DELETE CASCADE');
  25.         $this->addSql('ALTER TABLE crm_bundle__opportunity CHANGE options options LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\'');
  26.         $this->addSql('ALTER TABLE planning_bundle__slot DROP FOREIGN KEY FK_78892747410BF7D1');
  27.         $this->addSql('DROP INDEX IDX_78892747410BF7D1 ON planning_bundle__slot');
  28.         $this->addSql('ALTER TABLE planning_bundle__slot DROP task_time_id');
  29.         $this->addSql('ALTER TABLE products_bundle__declination CHANGE options options LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\'');
  30.         $this->addSql('ALTER TABLE projects_bundle__task_time ADD slot_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  31.         $this->addSql('ALTER TABLE projects_bundle__task_time ADD CONSTRAINT FK_3040BF2759E5119C FOREIGN KEY (slot_id) REFERENCES planning_bundle__slot (id)');
  32.         $this->addSql('CREATE INDEX IDX_3040BF2759E5119C ON projects_bundle__task_time (slot_id)');
  33.         $this->addSql('ALTER TABLE shipments_bundle__picking_history ADD stock_location_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  34.         $this->addSql('ALTER TABLE shipments_bundle__picking_history ADD CONSTRAINT FK_F9B6EAE7D98387BA FOREIGN KEY (stock_location_id) REFERENCES stocks_bundle__stock_location (id)');
  35.         $this->addSql('CREATE INDEX IDX_F9B6EAE7D98387BA ON shipments_bundle__picking_history (stock_location_id)');
  36.         $this->addSql('ALTER TABLE tax ADD manufactured_pack_sales_account_number VARCHAR(32) DEFAULT NULL');
  37.         $this->addSql('CREATE INDEX manufactured_pack_sales_account_number ON tax (manufactured_pack_sales_account_number)');
  38.         $this->addSql('ALTER TABLE team ADD position INT DEFAULT NULL');
  39.         $this->addSql('CREATE INDEX position ON team (position)');
  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 menu DROP FOREIGN KEY FK_7D053A93B03A8386');
  45.         $this->addSql('ALTER TABLE menu DROP FOREIGN KEY FK_7D053A93896DBBDE');
  46.         $this->addSql('ALTER TABLE tax_rule_translations DROP FOREIGN KEY FK_ABF78759232D562B');
  47.         $this->addSql('ALTER TABLE tax_translations DROP FOREIGN KEY FK_5687791F232D562B');
  48.         $this->addSql('DROP TABLE menu');
  49.         $this->addSql('DROP TABLE tax_rule_translations');
  50.         $this->addSql('DROP TABLE tax_translations');
  51.         $this->addSql('ALTER TABLE planning_bundle__slot ADD task_time_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\'');
  52.         $this->addSql('ALTER TABLE planning_bundle__slot ADD CONSTRAINT FK_78892747410BF7D1 FOREIGN KEY (task_time_id) REFERENCES projects_bundle__task_time (id)');
  53.         $this->addSql('CREATE INDEX IDX_78892747410BF7D1 ON planning_bundle__slot (task_time_id)');
  54.         $this->addSql('DROP INDEX position ON team');
  55.         $this->addSql('ALTER TABLE team DROP position');
  56.         $this->addSql('ALTER TABLE projects_bundle__task_time DROP FOREIGN KEY FK_3040BF2759E5119C');
  57.         $this->addSql('DROP INDEX IDX_3040BF2759E5119C ON projects_bundle__task_time');
  58.         $this->addSql('ALTER TABLE projects_bundle__task_time DROP slot_id');
  59.         $this->addSql('ALTER TABLE products_bundle__declination CHANGE options options LONGTEXT NOT NULL COLLATE `utf8mb4_bin`');
  60.         $this->addSql('ALTER TABLE crm_bundle__opportunity CHANGE options options LONGTEXT DEFAULT NULL COLLATE `utf8mb4_bin`');
  61.         $this->addSql('ALTER TABLE shipments_bundle__picking_history DROP FOREIGN KEY FK_F9B6EAE7D98387BA');
  62.         $this->addSql('DROP INDEX IDX_F9B6EAE7D98387BA ON shipments_bundle__picking_history');
  63.         $this->addSql('ALTER TABLE shipments_bundle__picking_history DROP stock_location_id');
  64.         $this->addSql('DROP INDEX manufactured_pack_sales_account_number ON tax');
  65.         $this->addSql('ALTER TABLE tax DROP manufactured_pack_sales_account_number');
  66.     }
  67. }