<?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 Version20211125111702 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 INTO setting (name, description, data, created_at, updated_at) VALUES ("BITRIX_IS_SANDBOX", "Is app connected with sandbox (set 1 if true or 0 if false)", "1", now(), now())');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DELETE FROM setting WHERE name="BITRIX_IS_SANDBOX"');
}
}