migrations/2021/02/Version20210211011109.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210211011109 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 (0x11eb6bf0f83875c488dc2980a0b1c2a7, "Prisavtale", "prisavtale", "7r71tw8tzg27nrhq19g2gb3gn7.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');}public function postDown(Schema $schema): void{$this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11eb6bf0f83875c488dc2980a0b1c2a7');}}