migrations/Version20230814195206.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20230814195206 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('CREATE TABLE type (id INT AUTO_INCREMENT NOT NULL, country_id INT DEFAULT NULL, type VARCHAR(255) DEFAULT NULL, INDEX IDX_8CDE5729F92F3E70 (country_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  11.         $this->addSql('ALTER TABLE type ADD CONSTRAINT FK_8CDE5729F92F3E70 FOREIGN KEY (country_id) REFERENCES country (id)');
  12.     }
  13.     public function down(Schema $schema): void
  14.     {
  15.         $this->addSql('DROP TABLE type');
  16.     }
  17. }