<?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 Version20240819142458 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 exposed_sub_domain ADD status_id INT DEFAULT NULL, ADD is_active TINYINT(1) DEFAULT 1 NOT NULL, ADD last_seen DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\'');
$this->addSql('ALTER TABLE exposed_sub_domain ADD CONSTRAINT FK_9CEC6A076BF700BD FOREIGN KEY (status_id) REFERENCES status (id)');
$this->addSql('CREATE INDEX IDX_9CEC6A076BF700BD ON exposed_sub_domain (status_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE exposed_sub_domain DROP FOREIGN KEY FK_9CEC6A076BF700BD');
$this->addSql('DROP INDEX IDX_9CEC6A076BF700BD ON exposed_sub_domain');
$this->addSql('ALTER TABLE exposed_sub_domain DROP status_id, DROP is_active, DROP last_seen');
}
}