<?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 Version20221216121250 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 news ADD date_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP');
$this->addSql('COMMENT ON COLUMN news.date_at IS \'Дата новости\'');
$this->addSql('ALTER TABLE news ALTER COLUMN date_at DROP DEFAULT');
}
public function postUp(Schema $schema): void
{
$this->connection->executeQuery("UPDATE news SET date_at = COALESCE(published_at, CURRENT_TIMESTAMP)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE news DROP date_at');
}
}