migrations/2021/12/Version20211203093934.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20211203093934 extends AbstractMigration{public function up(Schema $schema): void{}public function down(Schema $schema): void{}public function postUp(Schema $schema): void{$this->connection->executeQuery('INSERT INTO document_template (id, name, filename, preview_image, formats, contact_types_by, contact_types_for) VALUES (0x11ec541c9e63ea6eb48b47ddd4146db1, "Prisavtale, time pris - PL", "prisavtale-time-pris-pl", "4ycfn6wn0w27pb92t7vqa18vdh.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');}public function postDown(Schema $schema): void{$this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11ec541c9e63ea6eb48b47ddd4146db1');}}