```
✨ feat(Prestaire.php): Implémente UserInterface et PasswordAuthenticatedUserInterface. ✨ feat(security): Ajoute firewall et authentificateur pour ETL. ✨ feat(EtlController.php): Ajoute contrôleur et routes pour ETL. ✨ feat(RedirecListener.php): Ajoute redirection pour etl.ludikevent.fr. ✏️ chore(caddy): Ajoute etl.ludikevent.fr à la configuration Caddy. ```
This commit is contained in:
32
migrations/Version20260129162649.php
Normal file
32
migrations/Version20260129162649.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?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 Version20260129162649 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 prestaire ADD roles JSON NOT NULL');
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
// this down() migration is auto-generated, please modify it to your needs
|
||||
$this->addSql('CREATE SCHEMA public');
|
||||
$this->addSql('ALTER TABLE prestaire DROP roles');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user