AzuraCast/util/doctrine_migration.php.tmpl

27 lines
362 B
Cheetah
Raw Normal View History

<?php
declare(strict_types=1);
namespace <namespace>;
use Doctrine\DBAL\Schema\Schema;
final class <className> extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
2024-04-21 11:47:32 +02:00
<up>
}
public function down(Schema $schema): void
{
2024-04-21 11:47:32 +02:00
<down>
}
2024-04-21 11:47:32 +02:00
<override>
}