<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260527120000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add nullable creator.profile_picture_url for CDN profile pictures.';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE creator ADD profile_picture_url VARCHAR(2048) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE creator DROP profile_picture_url');
}
}