migrations/2021/09/Version20210929200048.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210929200048 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 (0x11ec215c72483ba896210242ac130002, "Declaration of Completeness NO", "declaration-of-completeness-no", "3j90xtg8aw27p9c8828ap16002.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');$this->connection->executeQuery('INSERT INTO document_template (id, name, filename, preview_image, formats, contact_types_by, contact_types_for) VALUES (0x11ec215c7e27c5ba96210242ac130002, "Declaration of Completeness EN", "declaration-of-completeness-en", "3y4z2vm8aw27p9c8828ap16002.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');}public function postDown(Schema $schema): void{$this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11ec215c72483ba896210242ac130002');$this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11ec215c7e27c5ba96210242ac130002');}}