<?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 Version20240226155228 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$file = __DIR__ . "/sql/20230606140000.up.sql";
$this->connection->exec(file_get_contents($file));
$file = __DIR__ . "/sql/20230905140000.up.sql";
$this->connection->exec(file_get_contents($file));
}
public function down(Schema $schema): void
{
}
}