<?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 Version20250707071640 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
$this->addSql("
INSERT IGNORE INTO `std_config` (`machine_name`, `created_by`, `updated_by`, `description_machine_name`, `details_machine_name`, `parent_name`, `variable_type`, `order_value`, `is_hidden`, `created_date`, `updated_date`, `label`, `language_code`)
VALUES
('logomini_break', '1', '1', 'logomini_break', 'logomini_break', 'Custom', 'BR6', '8', '0', now(), now(), '', ''),
('logomini_portugal', '1', '1', 'logomini_portugal', 'logomini_portugal', 'Custom', 'IMAGE', '9', '0', now(), now(), 'Logo Mini Portugal', ''),
('logomini_norte', '1', '1', 'logomini_norte', 'logomini_norte', 'Custom', 'IMAGE', '10', '0', now(), now(), 'Logo Mini Norte', ''),
('logomini_centro', '1', '1', 'logomini_centro', 'logomini_centro', 'Custom', 'IMAGE', '11', '0', now(), now(), 'Logo Mini Centro', ''),
('logomini_sul', '1', '1', 'logomini_sul', 'logomini_sul', 'Custom', 'IMAGE', '12', '0', now(), now(), 'Logo Mini Sul', ''),
('logomini_rural', '1', '1', 'logomini_rural', 'logomini_rural', 'Custom', 'IMAGE', '13', '0', now(), now(), 'Logo Mini Rural', '');
");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql("DELETE FROM `std_config` WHERE `machine_name` IN ('logomini_break', 'logomini_portugal', 'logomini_norte', 'logomini_centro', 'logomini_sul', 'logomini_rural');");
}
}