migrations/Version20201113161809.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20201113161809 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.         // this up() migration is auto-generated, please modify it to your needs
  14.         $this->addSql('INSERT INTO contract_signatory VALUES (NULL, :for, :since, :name, :title, NOW(), NOW())', [
  15.             'for' => 'schedule-4',
  16.             'since' => '2019-01-01',
  17.             'name' => 'Robin Nelson',
  18.             'title' => 'Science Director',
  19.         ]);
  20.         $this->addSql('INSERT INTO contract_signatory VALUES (NULL, :for, :since, :name, :title, NOW(), NOW())', [
  21.             'for' => 'schedule-4',
  22.             'since' => '2019-06-06',
  23.             'name' => 'Jean-Marc Sohier',
  24.             'title' => 'Science Director',
  25.         ]);
  26.         $this->addSql('INSERT INTO contract_signatory VALUES (NULL, :for, :since, :name, :title, NOW(), NOW())', [
  27.             'for' => 'schedule-4',
  28.             'since' => '2020-06-11',
  29.             'name' => 'Jean-Marc Sohier',
  30.             'title' => 'Concawe Director',
  31.         ]);
  32.     }
  33.     public function down(Schema $schema): void
  34.     {
  35.         // this down() migration is auto-generated, please modify it to your needs
  36.         $this->addSql('DELETE FROM contract_signatory WHERE `for` = :schedule4', [
  37.             'schedule4' => 'schedule-4',
  38.         ]);
  39.     }
  40. }