migrations/Version20250902102100.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 Version20250902102100 extends AbstractMigration{public function getDescription(): string{return 'Suppression des colonnes hybridauth_provider_name et hybridauth_provider_uid dupliquées avec social et social_uid';}public function up(Schema $schema): void{// this up() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE client DROP hybridauth_provider_name');$this->addSql('ALTER TABLE client DROP hybridauth_provider_uid');}public function down(Schema $schema): void{// this down() migration is auto-generated, please modify it to your needs$this->addSql('ALTER TABLE client ADD hybridauth_provider_name VARCHAR(255) DEFAULT NULL COMMENT \'Social Login Integration, Provider name \'');$this->addSql('ALTER TABLE client ADD hybridauth_provider_uid VARCHAR(255) DEFAULT NULL COMMENT \'Social Login Integration, Provider user ID\'');}}