Files
ludikevent_crm/migrations/Version20260206160000.php
Serreau Jovann 7ff3538bcd ```
 feat(contrats): Améliore la gestion des contrats et des paiements.

- Rend le champ details non obligatoire dans add.twig
- Ajoute une valeur par défaut pour isSigned et type dans les entités.
- Corrige l'ajout des lignes et options au contrat.
- Ajoute la création automatique du client Stripe.
```
2026-02-06 11:06:38 +01:00

35 lines
1.1 KiB
PHP

<?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 Version20260206160000 extends AbstractMigration
{
public function getDescription(): string
{
return 'Set default value for type in contrats_line table';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql("ALTER TABLE contrats_line ALTER type SET DEFAULT 'product'");
$this->addSql("UPDATE contrats_line SET type = 'product' WHERE type IS NULL");
$this->addSql("ALTER TABLE contrats_line ALTER type SET NOT NULL");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE contrats_line ALTER type DROP DEFAULT');
$this->addSql('ALTER TABLE contrats_line ALTER type DROP NOT NULL');
}
}