<?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 Version20231208095137 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE `community_post` ADD `like_count` INT NULL DEFAULT NULL AFTER `tags`, ADD `comment_count` INT NULL DEFAULT NULL AFTER `like_count`');
}
public function down(Schema $schema): void
{
}
}