AzuraCast/src/Entity/Migration/Version20190314074747.php

25 lines
549 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity\Migration;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20190314074747 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE users ADD two_factor_secret VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE users DROP two_factor_secret');
}
}