migrations/2021/09/Version20210929204446.php line 1

  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20210929204446 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.     }
  11.     public function down(Schema $schema): void
  12.     {
  13.     }
  14.     public function postUp(Schema $schema): void
  15.     {
  16.         $this->connection->executeQuery('INSERT INTO document_template (id, name, filename, preview_image, formats, contact_types_by, contact_types_for) VALUES (0x11ec215e101d043496210242ac130002, "General meeting protocol NO", "general-meeting-protocol-no", "0g3m2388ay27p9c8828ap16002.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');
  17.         $this->connection->executeQuery('INSERT INTO document_template (id, name, filename, preview_image, formats, contact_types_by, contact_types_for) VALUES (0x11ec215e1548b83696210242ac130002, "General meeting protocol EN", "general-meeting-protocol-en", "0n92w3c8ay27p9c8828ap16002.png", "[\\"docx\\"]", "[\\"1\\"]", "[\\"1\\"]")');
  18.     }
  19.     public function postDown(Schema $schema): void
  20.     {
  21.         $this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11ec215e101d043496210242ac130002');
  22.         $this->connection->executeQuery('DELETE FROM document_template WHERE id=0x11ec215e1548b83696210242ac130002');
  23.     }
  24. }