vendor/bluue/dhl-bundle/migrations/Version20221208083601.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DhlBundleMigrations;
  4. use App\Services\ObjectSerialize;
  5. use Doctrine\DBAL\Schema\Schema;
  6. use Doctrine\Migrations\AbstractMigration;
  7. use Symfony\Component\Uid\UuidV6;
  8. final class Version20221208083601 extends AbstractMigration
  9. {
  10.     private ObjectSerialize $objectSerialize;
  11.     public function setObjectSerialize(ObjectSerialize $objectSerialize)
  12.     {
  13.         $this->objectSerialize $objectSerialize;
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('CREATE TABLE dhl_bundle__package_type (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)\', name VARCHAR(255) NOT NULL, weight NUMERIC(20, 6) NOT NULL, width NUMERIC(20, 6) NOT NULL, height NUMERIC(20, 6) NOT NULL, depth NUMERIC(20, 6) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_E0041E8AB03A8386 (created_by_id), INDEX IDX_E0041E8A896DBBDE (updated_by_id), INDEX IDX_E0041E8AC76F1F52 (deleted_by_id), INDEX name (name), INDEX weight (weight), INDEX width (width), INDEX height (height), INDEX depth (depth), 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');
  18.         $this->addSql('ALTER TABLE dhl_bundle__package_type ADD CONSTRAINT FK_E0041E8AB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
  19.         $this->addSql('ALTER TABLE dhl_bundle__package_type ADD CONSTRAINT FK_E0041E8A896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE dhl_bundle__package_type ADD CONSTRAINT FK_E0041E8AC76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         $this->addSql('ALTER TABLE dhl_bundle__package_type DROP FOREIGN KEY FK_E0041E8AB03A8386');
  25.         $this->addSql('ALTER TABLE dhl_bundle__package_type DROP FOREIGN KEY FK_E0041E8A896DBBDE');
  26.         $this->addSql('ALTER TABLE dhl_bundle__package_type DROP FOREIGN KEY FK_E0041E8AC76F1F52');
  27.         $this->addSql('DROP TABLE dhl_bundle__package_type');
  28.     }
  29.     public function postUp(Schema $schema): void
  30.     {
  31.         parent::postUp($schema);
  32.         $now = (new \DateTime())->format('Y-m-d H:i:s');
  33.         $configurations = [
  34.             'dhl_bundle__limit_number_relays' => '30',
  35.             'dhl_bundle__package_content' => 'contenu du colis',
  36.             'dhl_bundle__shipper_country_name' => 'France'
  37.         ];
  38.         foreach ($configurations as $configuration => $value) {
  39.             $this->connection->insert('configuration', [
  40.                 'id' => (new UuidV6())->toBinary(),
  41.                 'name' => $configuration,
  42.                 'context_id' => null,
  43.                 'value' => $this->objectSerialize->add((object) ['value' => $value]),
  44.                 'created_at' => $now,
  45.                 'updated_at' => $now
  46.             ]);
  47.         }
  48.         $this->connection->insert('dhl_bundle__package_type', [
  49.             'id' => (new UuidV6())->toBinary(),
  50.             'name' => 'CARTON 25X20X15',
  51.             'weight' => '1',
  52.             'width' => '20',
  53.             'height' => '25',
  54.             'depth' => '15',
  55.             'created_at' => $now,
  56.             'updated_at' => $now
  57.         ]);
  58.         shell_exec('bin/console do:fi:lo --append --group=dhl_bundle_logo_svg');
  59.     }
  60. }