migrations/2021/03/Version20210303191700.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;final class Version20210303191700 extends AbstractMigration{public function up(Schema $schema): void{}public function down(Schema $schema): void{}public function postUp(Schema $schema): void{$this->connection->executeQuery('UPDATE document_template SET name="Tilbud", filename="tilbud" WHERE id=0x11eb77ade7ffb186827ea3d533dd0c9e');}public function postDown(Schema $schema): void{$this->connection->executeQuery('UPDATE document_template SET name="Prisavtale v3", filename="prisavtale-v3" WHERE id=0x11eb77ade7ffb186827ea3d533dd0c9e');}}