<?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 Version20250221214209 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 administrator_user ADD contact_address VARCHAR(255) DEFAULT NULL, ADD employer VARCHAR(255) DEFAULT NULL, ADD job_position VARCHAR(255) DEFAULT NULL, ADD socials_website VARCHAR(255) DEFAULT NULL, ADD socials_platform_x VARCHAR(255) DEFAULT NULL, ADD socials_facebook VARCHAR(255) DEFAULT NULL, ADD socials_instagram VARCHAR(255) DEFAULT NULL, ADD socials_linked_in VARCHAR(255) DEFAULT NULL');
    }

    public function down(Schema $schema): void
    {
        // this down() migration is auto-generated, please modify it to your needs
        $this->addSql('ALTER TABLE administrator_user DROP contact_address, DROP employer, DROP job_position, DROP socials_website, DROP socials_platform_x, DROP socials_facebook, DROP socials_instagram, DROP socials_linked_in');
    }
}
