feat: add DNSSEC badge in domain response

This commit is contained in:
Maël Gangloff
2024-12-30 14:31:31 +01:00
parent 51593f31d0
commit 363d7a97f3
6 changed files with 87 additions and 22 deletions

View File

@@ -0,0 +1,31 @@
<?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 Version20241230131605 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add DNSSEC delegation_signed';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE domain ADD delegation_signed BOOLEAN NOT NULL DEFAULT FALSE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE domain DROP delegation_signed');
}
}