migrations/Version20250801123508.php line 1
<?phpdeclare(strict_types=1);namespace DoctrineMigrations;use Doctrine\DBAL\Schema\Schema;use Doctrine\Migrations\AbstractMigration;/*** Auto-generated Migration: Please modify to your needs!*/final class Version20250801123508 extends AbstractMigration{public function getDescription(): string{return 'Ajout des colonnes social et social_uid dans la table client';}public function up(Schema $schema): void{// this up() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE client ADD social VARCHAR(50) DEFAULT NULL COMMENT \'Provider social pour l\'authentification (google, facebook, etc.)\'');$this->addSql('ALTER TABLE client ADD social_uid VARCHAR(255) DEFAULT NULL COMMENT \'Identifiant unique du provider social\'');}public function down(Schema $schema): void{// this down() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE client DROP social');$this->addSql('ALTER TABLE client DROP social_uid');}}