<?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 Version20240612043222 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO mtb_csv_type (id, name, sort_no, discriminator_type) VALUES
(6, 'オークションCSV', 1, 'csvtype')");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM mtb_csv_type WHERE id IN (6)");
}
}