app/DoctrineMigrations/Version20240219075230.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 Version20240219075230 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, 'Business', 'business', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  23.         
  24.         $lastId++;
  25.         $this->addSql($insert_block "($lastId ,10, 'Concept', 'concept', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  26.         
  27.         $lastId++;
  28.         $this->addSql($insert_block "($lastId ,10, 'Consulting', 'consulting', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  29.         
  30.         $lastId++;
  31.         $this->addSql($insert_block "($lastId ,10, 'Corporate', 'corporate', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  32.         
  33.         $lastId++;
  34.         $this->addSql($insert_block "($lastId ,10, 'Online Shop', 'online_shop', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  35.         
  36.         $lastId++;
  37.         $this->addSql($insert_block "($lastId ,10, 'Recycle', 'recycle', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  38.         
  39.         $lastId++;
  40.         $this->addSql($insert_block "($lastId ,10, 'Rental', 'rental', 0, 1, '2024-02-19 09:00:00', '2024-02-19 09:00:00', 'block');");
  41.     }
  42.     public function down(Schema $schema): void
  43.     {
  44.         // this down() migration is auto-generated, please modify it to your needs
  45.     }
  46. }