<?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 Version20220417180938 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 `limit_transaction` (`name`, `country_id`, `period_days`, `method`, `limit`, `user_to_check`, `type_to_check`, `date_created`, `date_updated`, `type`) VALUES
('LIMIT CASH (7) S CL', 107, 7, 'Cash', 999, 'client', 'send', NOW(), NULL, 'LIMIT'),
('LIMIT CASH (365) S CL', 107, 365, 'Cash', 14000, 'client', 'send', NOW(), NULL, 'LIMIT'),
('LIMIT WIRE (7) S CL', 107, 7, 'Wire', 14000, 'client', 'send', NOW(), NULL, 'LIMIT'),
('LIMIT CASH (1) R CL', 107, 1, 'Cash', 999, 'client', 'receive', NOW(), NULL, 'LIMIT')");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}