Files
SIRH/migrations/Version20260312120000.php
tristan 9fe2397386
Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
feat : ajout d'une date d'entrée pour les employés
2026-03-12 11:23:09 +01:00

27 lines
584 B
PHP

<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20260312120000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Add entry_date column to employees table';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE employees ADD entry_date DATE DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE employees DROP entry_date');
}
}