<?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 Version20220328135439 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('ALTER TABLE category ADD lang_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE category ADD CONSTRAINT FK_64C19C1B213FA4 FOREIGN KEY (lang_id) REFERENCES language (id)');
$this->addSql('CREATE INDEX IDX_64C19C1B213FA4 ON category (lang_id)');
$this->addSql('ALTER TABLE language ADD flag VARCHAR(255) DEFAULT NULL, DROP lang, CHANGE language_code language_code VARCHAR(100) NOT NULL');
$this->addSql('ALTER TABLE post CHANGE published_at published_at DATETIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE category DROP FOREIGN KEY FK_64C19C1B213FA4');
$this->addSql('DROP INDEX IDX_64C19C1B213FA4 ON category');
$this->addSql('ALTER TABLE category DROP lang_id');
$this->addSql('ALTER TABLE language ADD lang VARCHAR(10) CHARACTER SET utf8 DEFAULT NULL COLLATE `utf8_unicode_ci`, DROP flag, CHANGE language_code language_code VARCHAR(10) DEFAULT NULL');
$this->addSql('ALTER TABLE post CHANGE published_at published_at DATETIME NOT NULL');
}
}