<?php
declare(strict_types=1);
namespace ShipmentsBundleMigrations;
use App\Services\ObjectSerialize;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
use Symfony\Component\Uid\UuidV6;
final class Version20230214141003 extends AbstractMigration
{
private ObjectSerialize $objectSerialize;
public function setObjectSerialize(ObjectSerialize $objectSerialize)
{
$this->objectSerialize = $objectSerialize;
}
public function up(Schema $schema): void
{
}
public function down(Schema $schema): void
{
}
public function postUp(Schema $schema): void
{
parent::postUp($schema);
$now = (new \DateTime())->format('Y-m-d H:i:s');
$fixtureFile = dirname(__FILE__) . '/../src/Resources/views/TemplateMail/Fixtures/default.html.twig';
$this->connection->insert('configuration', [
'id' => (new UuidV6())->toBinary(),
'name' => 'shipments_bundle__template_mail_default',
'context_id' => null,
'value' => $this->objectSerialize->add((object) ['value' => file_get_contents($fixtureFile)]),
'created_at' => $now,
'updated_at' => $now
]);
}
}