app/DoctrineMigrations/Version20240322060627.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 Version20240322060627 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.         $sql 'SELECT `id` FROM `dtb_block` ORDER BY `id` DESC LIMIT 1';
  19.         $results $this->connection->fetchAssociative($sql);
  20.         $lastId = (int) $results["id"] + 1;
  21.         $insert_block "INSERT INTO dtb_block (id, device_type_id, block_name, file_name, use_controller, deletable, create_date, update_date, discriminator_type) VALUES ";
  22.         $this->addSql($insert_block "($lastId ,10, 'New Footer', 'new_footer', 0, 1, '2024-03-21 09:00:00', '2024-03-21 09:00:00', 'block');");
  23.         $lastId++;
  24.         $this->addSql($insert_block "($lastId ,10, 'New Header', 'new_header', 0, 1, '2024-03-21 09:00:00', '2024-03-21 09:00:00', 'block');");
  25.         
  26.         $lastId++;
  27.         $this->addSql($insert_block "($lastId ,10, 'New Login SP', 'new_login_sp', 0, 1, '2024-03-21 09:00:00', '2024-03-21 09:00:00', 'block');");
  28.     }
  29.     public function down(Schema $schema): void
  30.     {
  31.         // this down() migration is auto-generated, please modify it to your needs
  32.     }
  33. }