<?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 Version20240612043228 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("INSERT INTO dtb_csv (id, csv_type_id, creator_id, entity_name, field_name, reference_field_name, disp_name, sort_no, enabled, create_date, update_date, discriminator_type) VALUES
(207, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'id', NULL, 'オークションID', 1, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(208, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'Status', 'id', '公開ステータス(ID)', 2, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(209, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'name', NULL, 'オークション名', 3, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(210, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'preview_start_date', NULL, '事前入札開始日時', 4, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(211, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'schedule_start_date', NULL, '競り開始予定日時', 5, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(212, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'listing_score', NULL, '出品点数', 6, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(213, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'discription', NULL, 'オークション説明', 7, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(214, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'correction_list', NULL, '訂正リスト', 8, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(215, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'start_date', NULL, '開始日時', 9, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(216, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'end_date', NULL, '終了日時', 10, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(217, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'AuctionImage', 'file_name', 'オークション画像', 11, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(218, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'AuctionCategories', 'category_id', 'オークションカテゴリ(ID)', 12, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv'),
(219, 6, NULL, 'Customize\\\\\\\\Entity\\\\\\\\Auction', 'AuctionTag', 'tag_id', 'オークションタグ(ID)', 13, 1, '2024-06-09 08:15:24', '2024-06-09 08:15:24', 'csv')");
}
public function down(Schema $schema): void
{
$this->addSql("DELETE FROM dtb_csv WHERE id IN (207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219)");
}
}