<?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 Version20240228101910 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE user_ip CHANGE ip ip LONGTEXT DEFAULT NULL, CHANGE operator operator LONGTEXT DEFAULT NULL, CHANGE tariff tariff LONGTEXT DEFAULT NULL, CHANGE user user LONGTEXT DEFAULT NULL, CHANGE order_reference order_reference LONGTEXT DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE user_ip CHANGE ip ip LONGTEXT NOT NULL, CHANGE operator operator LONGTEXT NOT NULL, CHANGE tariff tariff LONGTEXT NOT NULL, CHANGE user user LONGTEXT NOT NULL, CHANGE order_reference order_reference LONGTEXT NOT NULL');
}
}