<?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 Version20250919092951 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 worldfeed_stats ADD codeops VARCHAR(255) DEFAULT NULL, ADD company_name VARCHAR(255) DEFAULT NULL, ADD fullname VARCHAR(255) DEFAULT NULL, ADD email VARCHAR(255) DEFAULT NULL, DROP created_by, DROP created_by_code_ops, DROP created_by_fullname, DROP updated_by, DROP updated_by_codeOps, DROP updated_by_fullname");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE worldfeed_stats ADD created_by VARCHAR(36) DEFAULT '' NOT NULL, ADD created_by_code_ops VARCHAR(36) DEFAULT NULL, ADD created_by_fullname VARCHAR(72) DEFAULT NULL, ADD updated_by VARCHAR(36) DEFAULT '' NOT NULL, ADD updated_by_codeOps VARCHAR(36) DEFAULT NULL, ADD updated_by_fullname VARCHAR(72) DEFAULT NULL, DROP codeops, DROP company_name, DROP fullname, DROP email");
}
}