<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your needs!
*/
class Version20170214103518 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('UPDATE person SET person=\'Uncertain (Provincial)\' WHERE id=2717');
$this->addSql('UPDATE person SET person=\'Uncertain (Byzantine)\' WHERE id=2721');
$this->addSql('UPDATE person SET person=\'Uncertain (Greek)\' WHERE id=2725');
$this->addSql('UPDATE person SET person=\'Uncertain Nabatean King\' WHERE id=2726');
$this->addSql('UPDATE person SET person=\'Uncertain Seleucid King\' WHERE id=2733');
$this->addSql('UPDATE person SET person=\'Uncertain Hasmonaean King\' WHERE id=2734');
$this->addSql('UPDATE person SET person=\'Uncertain (Medieval)\' WHERE id=2749');
$this->addSql('UPDATE person SET person=\'Uncertain (Republican)\' WHERE id=2751');
$this->addSql('UPDATE person SET person=\'Uncertain (Other)\' WHERE id=2762');
$this->addSql('UPDATE person SET person=\'Uncertain (Uncertain)\' WHERE id=2779');
$this->addSql('UPDATE person SET person=\'Uncertain Axumite King\' WHERE id=2798');
}
/**
* @param Schema $schema
*/
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.');
}
}