migrations/2023/02/Version20230221110743.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20230221110743 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 (0x11edb1d75d69f57aa144f72dc920aa7f, "Price offer, dentists - NO", "price-offer-dentists-no", "2xd7tqnceq27pt2h7q5q4j1akz.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\", \\"2\\"]")');}public function postDown(Schema $schema): void{$this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11edb1d75d69f57aa144f72dc920aa7f');}}