<?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 Version20240322060627 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
$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 Footer', 'new_footer', 0, 1, '2024-03-21 09:00:00', '2024-03-21 09:00:00', 'block');");
$lastId++;
$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');");
$lastId++;
$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');");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}