<?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 Version20220726061928 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('UPDATE static_fields SET name = "text" WHERE id = 3');
$this->addSql('UPDATE static_fields SET swagger_name = "string" WHERE id = 7');
}
public function down(Schema $schema): void
{
$this->addSql('UPDATE static_fields SET name = "string" WHERE id = 3');
$this->addSql('UPDATE static_fields SET swagger_name = "date" WHERE id = 7');
}
}