feat: add app:entity:privacy-protection command

This commit is contained in:
Maël Gangloff
2025-12-13 15:41:50 +01:00
parent 94a29bc8df
commit a814cdc444
8 changed files with 139 additions and 7 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 Version20251213142040 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add privacy_protection column on entity';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE entity ADD privacy_protection 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 entity DROP privacy_protection');
}
}