<?php
declare(strict_types=1);
namespace EckinoxSecurityMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
final class Version20240130160608 extends AbstractMigration
{
public function getDescription(): string
{
return 'Renames the column email_auth_enabled to mfa_type in the users tables.';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE eckinox_users ADD mfa_type VARCHAR(255) DEFAULT NULL');
$this->addSql("UPDATE eckinox_users SET mfa_type = 'email' WHERE email_auth_enabled = 1");
$this->addSql('ALTER TABLE eckinox_users DROP email_auth_enabled');
$this->addSql('ALTER TABLE eckinox_app_users ADD mfa_type VARCHAR(255) DEFAULT NULL');
$this->addSql("UPDATE eckinox_app_users SET mfa_type = 'email' WHERE email_auth_enabled = 1");
$this->addSql('ALTER TABLE eckinox_app_users DROP email_auth_enabled');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE eckinox_users ADD email_auth_enabled TINYINT(1) DEFAULT 1 NOT NULL');
$this->addSql("UPDATE eckinox_users SET email_auth_enabled = 1 WHERE mfa_type = 'email'");
$this->addSql('ALTER TABLE eckinox_users DROP mfa_type');
$this->addSql('ALTER TABLE eckinox_app_users ADD email_auth_enabled TINYINT(1) DEFAULT 1 NOT NULL');
$this->addSql("UPDATE eckinox_app_users SET email_auth_enabled = 1 WHERE mfa_type = 'email'");
$this->addSql('ALTER TABLE eckinox_app_users DROP mfa_type');
}
}