<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20250417103350 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE creator ADD tier BIGINT UNSIGNED DEFAULT NULL, ADD ethnicity BIGINT UNSIGNED DEFAULT NULL, ADD category_gender BIGINT UNSIGNED DEFAULT NULL, ADD age_group BIGINT UNSIGNED DEFAULT NULL, ADD category_parent BIGINT UNSIGNED DEFAULT NULL, ADD attractiveness_level BIGINT UNSIGNED DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE creator DROP tier, DROP ethnicity, DROP category_gender, DROP age_group, DROP category_parent, DROP attractiveness_level');
}
}