<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\Migrations\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Auto-generated Migration: Please modify to your needs!
*/
class Version20200526114804 extends AbstractMigration
{
/**
* @param Schema $schema
*/
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('INSERT INTO `coin_level_data` (`id`, `created_by`, `modified_by`, `coin_level_data`, `deleted`, `creation_date`, `modified_date`, `comment`) VALUES (\'1\', NULL, NULL, \'Not available\', NULL, \'2020-05-26 00:00:00\', NULL, NULL), (\'2\', NULL, NULL, \'Available to enter\', NULL, \'2020-05-26 00:00:00\', NULL, NULL), (\'3\', NULL, NULL, \'Entered\', NULL, \'2020-05-26 00:00:00\', NULL, NULL)');
}
/**
* @param Schema $schema
*/
public function down(Schema $schema): void
{}
}