ebs/migrations/2023/Version20230103090224.php
2023-12-21 08:49:38 +01:00

25 lines
476 B
PHP
Executable file

<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230103090224 extends AbstractMigration
{
public function getDescription(): string
{
return 'Dummy migration to test the workflow';
}
public function up(Schema $schema): void
{
$this->addSql('SELECT 1 as id');
}
public function down(Schema $schema): void
{
}
}