<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20220516141515 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TABLE fulfillment_settings (id INT AUTO_INCREMENT NOT NULL, country_id INT DEFAULT NULL, settings LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\', active TINYINT(1) NOT NULL, UNIQUE INDEX countryUnique (country_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE fulfillment_settings ADD CONSTRAINT FK_A12E3220F92F3E70 FOREIGN KEY (country_id) REFERENCES country (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE fulfillment_settings');
}
}