migrations/Version20170119152907.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 Version20170119152907 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('CREATE TABLE hoard_country (hoard_id INT NOT NULL, country_id INT NOT NULL, INDEX IDX_2132874F762C4B4D (hoard_id), INDEX IDX_2132874FF92F3E70 (country_id), PRIMARY KEY(hoard_id, country_id)) DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE hoard_country ADD CONSTRAINT FK_2132874F762C4B4D FOREIGN KEY (hoard_id) REFERENCES hoard (id)');
  20.         $this->addSql('ALTER TABLE hoard_country ADD CONSTRAINT FK_2132874FF92F3E70 FOREIGN KEY (country_id) REFERENCES country (id)');
  21.         $this->addSql('SET FOREIGN_KEY_CHECKS=0');
  22.         $this->addSql('INSERT INTO hoard_country (hoard_id, country_id) SELECT id, country_id FROM `hoard`');
  23.         $this->addSql('SET FOREIGN_KEY_CHECKS=1');
  24.         $this->addSql('INSERT INTO country(id, country) VALUES (100, \'United Kingdom\')');
  25.         // 13: England, 34: Northern Ireland, 39: Scotland, 52: Wales 
  26.         $this->addSql('INSERT INTO hoard_country( hoard_id, country_id ) SELECT id, 100 FROM `hoard` WHERE hoard.country_id IN ( 13, 34, 39, 52 )'); 
  27.     }
  28.     /**
  29.      * @param Schema $schema
  30.      */
  31.     public function down(Schema $schema): void
  32.     {
  33.         // this down() migration is auto-generated, please modify it to your needs
  34.         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql''Migration can only be executed safely on \'mysql\'.');
  35.         $this->addSql('DROP TABLE hoard_country');
  36.     }
  37. }