migrations/Version20250506080048.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;/*** Auto-generated Migration: Please modify to your needs!*/final class Version20250506080048 extends AbstractMigration{public function getDescription(): string{return '';}public function up(Schema $schema): void{$this->addSql(<<<'SQL'ALTER TABLE chat_channel ADD last_activity_at DATETIME DEFAULT NULL, CHANGE ended_at ended_at DATETIME DEFAULT NULLSQL);}public function down(Schema $schema): void{$this->addSql(<<<'SQL'ALTER TABLE chat_channel DROP last_activity_at, CHANGE ended_at ended_at DATETIME DEFAULT '0001-01-01 00:00:00' NOT NULLSQL);}}