app/DoctrineMigrations/Version20240321021943.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20240321021943 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $insert_page "INSERT INTO dtb_layout (id, device_type_id, layout_name, create_date, update_date, discriminator_type) VALUES ";
  19.         $this->addSql($insert_page "(3 ,10, 'ホームページ用', '2024-03-21 10:06:17', '2024-03-21 10:06:17', 'layout');");
  20.         
  21.         $sql 'SELECT `id` FROM `dtb_page` ORDER BY `id` DESC LIMIT 1';
  22.         $results $this->connection->fetchAssociative($sql);
  23.         $lastId = (int) $results["id"] + 1;
  24.         $insert_page "INSERT INTO dtb_page (id, page_name, url, file_name, edit_type, create_date, update_date, meta_robots, discriminator_type) VALUES ";
  25.         $insert_pagelayout "INSERT INTO dtb_page_layout (page_id, layout_id, discriminator_type) VALUES ";
  26.         $this->addSql($insert_page "($lastId ,'Shop', 'shop', 'shop', 0, '2024-03-21 17:06:17', '2024-03-21 17:06:17','noindex', 'page');");
  27.         $this->addSql($insert_pagelayout "($lastId ,1 ,'pagelayout');");
  28.         
  29.         $sql 'SELECT `id` FROM `dtb_block` ORDER BY `id` DESC LIMIT 1';
  30.         $results $this->connection->fetchAssociative($sql);
  31.         $lastId = (int) $results["id"] + 1;
  32.         $insert_block "INSERT INTO dtb_block (id, device_type_id, block_name, file_name, use_controller, deletable, create_date, update_date, discriminator_type) VALUES ";
  33.         $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');");
  34.     }
  35.     public function down(Schema $schema): void
  36.     {
  37.         // this down() migration is auto-generated, please modify it to your needs
  38.     }
  39. }