<?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 Version20210419115610 extends AbstractMigration
{
public function getDescription() : string
{
return '';
}
public function up(Schema $schema) : void
{
$this->addSql("INSERT INTO `std_blocks_settings` (`machine_name`, `block_id`, `created_by`, `updated_by`, `name`, `setting_type`, `created_date`, `updated_date`, `order_value`) VALUES ('separator', '28', '1', '1', '', 'SEPARATOR', now(), now(), '3');");
$this->addSql("INSERT INTO `std_blocks_settings` (`machine_name`, `block_id`, `created_by`, `updated_by`, `name`, `setting_type`, `created_date`, `updated_date`, `order_value`) VALUES ('extra_class', '28', '1', '1', 'Extra Class', 'INPUT', now(), now(), '4');");
}
public function down(Schema $schema) : void
{
$this->addSql("delete from `std_blocks_settings` where `machine_name`='separator' and `block_id`=28;");
$this->addSql("delete from `std_blocks_settings` where `machine_name`='extra_class' and `block_id`=28;");
}
}