<?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 Version20220702204707 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE settings ADD need_videos_to_registration SMALLINT NOT NULL, ADD need_average_views_to_registration SMALLINT NOT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE settings ADD auto_ban_after_statistics_update LONGTEXT NOT NULL, DROP need_videos_to_registration');
}
public function isTransactional(): bool
{
return false;
}
}