migrations/Version20170214103518.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\Migrations\AbstractMigration;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. class Version20170214103518 extends AbstractMigration
  10. {
  11.     /**
  12.      * @param Schema $schema
  13.      */
  14.     public function up(Schema $schema): void
  15.     {
  16.         // this up() migration is auto-generated, please modify it to your needs
  17.         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql''Migration can only be executed safely on \'mysql\'.');
  18.         $this->addSql('UPDATE person SET person=\'Uncertain (Provincial)\' WHERE id=2717');
  19.         $this->addSql('UPDATE person SET person=\'Uncertain (Byzantine)\' WHERE id=2721');
  20.         $this->addSql('UPDATE person SET person=\'Uncertain (Greek)\' WHERE id=2725');
  21.         $this->addSql('UPDATE person SET person=\'Uncertain Nabatean King\' WHERE id=2726');
  22.         $this->addSql('UPDATE person SET person=\'Uncertain Seleucid King\' WHERE id=2733');
  23.         $this->addSql('UPDATE person SET person=\'Uncertain Hasmonaean King\' WHERE id=2734');
  24.         $this->addSql('UPDATE person SET person=\'Uncertain (Medieval)\' WHERE id=2749');
  25.         $this->addSql('UPDATE person SET person=\'Uncertain (Republican)\' WHERE id=2751');
  26.         $this->addSql('UPDATE person SET person=\'Uncertain (Other)\' WHERE id=2762');
  27.         $this->addSql('UPDATE person SET person=\'Uncertain (Uncertain)\' WHERE id=2779');
  28.         $this->addSql('UPDATE person SET person=\'Uncertain Axumite King\' WHERE id=2798');
  29.     }
  30.     /**
  31.      * @param Schema $schema
  32.      */
  33.     public function down(Schema $schema): void
  34.     {
  35.         // this down() migration is auto-generated, please modify it to your needs
  36.         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql''Migration can only be executed safely on \'mysql\'.');
  37.     }
  38. }