<?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 Version20240321021943 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
$insert_page = "INSERT INTO dtb_layout (id, device_type_id, layout_name, create_date, update_date, discriminator_type) VALUES ";
$this->addSql($insert_page . "(3 ,10, 'ホームページ用', '2024-03-21 10:06:17', '2024-03-21 10:06:17', 'layout');");
$sql = 'SELECT `id` FROM `dtb_page` ORDER BY `id` DESC LIMIT 1';
$results = $this->connection->fetchAssociative($sql);
$lastId = (int) $results["id"] + 1;
$insert_page = "INSERT INTO dtb_page (id, page_name, url, file_name, edit_type, create_date, update_date, meta_robots, discriminator_type) VALUES ";
$insert_pagelayout = "INSERT INTO dtb_page_layout (page_id, layout_id, discriminator_type) VALUES ";
$this->addSql($insert_page . "($lastId ,'Shop', 'shop', 'shop', 0, '2024-03-21 17:06:17', '2024-03-21 17:06:17','noindex', 'page');");
$this->addSql($insert_pagelayout . "($lastId ,1 ,'pagelayout');");
$sql = 'SELECT `id` FROM `dtb_block` ORDER BY `id` DESC LIMIT 1';
$results = $this->connection->fetchAssociative($sql);
$lastId = (int) $results["id"] + 1;
$insert_block = "INSERT INTO dtb_block (id, device_type_id, block_name, file_name, use_controller, deletable, create_date, update_date, discriminator_type) VALUES ";
$this->addSql($insert_block . "($lastId ,10, 'New Topic', 'new_topic', 0, 1, '2024-03-21 09:00:00', '2024-03-21 09:00:00', 'block');");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}