<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20250204114357 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE creator ADD engagement_rate DOUBLE PRECISION UNSIGNED DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE creator DROP engagement_rate');
}
}