19 lines
376 B
PHP
19 lines
376 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DoctrineMigrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
final class Version20250519215136 extends AbstractMigration
|
|
{
|
|
public function getDescription(): string {
|
|
return '';
|
|
}
|
|
|
|
public function up(Schema $schema): void {}
|
|
public function down(Schema $schema): void {}
|
|
}
|