<?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 Version20211026115500 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 currency (id, display) VALUES ("BHD", "Bahraini Dinar")');
$this->addSql('INSERT INTO currency (id, display) VALUES ("OMR", "Omani rial")');
$this->addSql('INSERT INTO currency (id, display) VALUES ("AED", "United Arab Emirates Dirham")');
$this->addSql('INSERT INTO currency (id, display) VALUES ("SAR", "Saudi riyal")');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DELETE FROM currency WHERE id = "BHD"');
$this->addSql('DELETE FROM currency WHERE id = "OMR"');
$this->addSql('DELETE FROM currency WHERE id = "AED"');
$this->addSql('DELETE FROM currency WHERE id = "SAR"');
}
}