<?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 Version20240510012350 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("INSERT INTO `dtb_page` (`id`, `master_page_id`, `page_name`, `url`, `file_name`, `edit_type`, `author`, `description`, `keyword`, `create_date`, `update_date`, `meta_robots`, `meta_tags`, `discriminator_type`) VALUES(50, NULL, '初めての方へ', 'guide', 'guide', 0, NULL, NULL, NULL, '2024-05-09 07:37:36', '2024-05-09 07:37:36', NULL, NULL, 'page'),(51, NULL, 'FAQ', 'faq', 'faq', 0, NULL, NULL, NULL, '2024-05-09 07:49:04', '2024-05-09 07:49:04', NULL, NULL, 'page'),(52, NULL, 'お急ぎの方へ', 'contact_emergency', 'contact_emergency', 0, NULL, NULL, NULL, '2024-05-09 08:29:00', '2024-05-09 08:29:00', NULL, NULL, 'page'),(53, NULL, 'ご利用規約', 'terms_of_use', 'terms_of_use', 0, NULL, NULL, NULL, '2024-05-09 08:59:45', '2024-05-09 08:59:45', NULL, NULL, 'page'),(54, NULL, '口コミガイドライン', 'review_guideline', 'review_guideline', 0, NULL, NULL, NULL, '2024-05-09 09:00:22', '2024-05-09 09:00:22', NULL, NULL, 'page')");
$this->addSql("INSERT INTO `dtb_page_layout` (`page_id`, `layout_id`, `sort_no`, `discriminator_type`) VALUES(50, 2, 44, 'pagelayout'),(51, 2, 44, 'pagelayout'),(52, 2, 44, 'pagelayout'),(53, 2, 44, 'pagelayout'),(54, 2, 44, 'pagelayout')");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}