<?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 Version20220922142503 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('COMMENT ON TABLE category IS \'Категории\'');
$this->addSql('COMMENT ON TABLE tag IS \'Теги\'');
$this->addSql('COMMENT ON TABLE news IS \'Новости\'');
$this->addSql('COMMENT ON COLUMN category.name IS \'Наименование\'');
$this->addSql('COMMENT ON COLUMN news.name IS \'Наименование\'');
$this->addSql('COMMENT ON COLUMN news.description IS \'Описание\'');
$this->addSql('COMMENT ON COLUMN tag.name IS \'Наименование\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('COMMENT ON COLUMN category.name IS NULL');
$this->addSql('COMMENT ON COLUMN tag.name IS NULL');
$this->addSql('COMMENT ON COLUMN news.name IS NULL');
$this->addSql('COMMENT ON COLUMN news.description IS NULL');
}
}