mirror of
https://github.com/shlinkio/shlink.git
synced 2025-01-05 21:53:22 -06:00
21 lines
321 B
Plaintext
21 lines
321 B
Plaintext
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace <namespace>;
|
||
|
|
||
|
use Doctrine\DBAL\Schema\Schema;
|
||
|
use Doctrine\Migrations\AbstractMigration;
|
||
|
|
||
|
final class Version<version> extends AbstractMigration
|
||
|
{
|
||
|
public function up(Schema $schema): void
|
||
|
{
|
||
|
<up>
|
||
|
}
|
||
|
|
||
|
public function down(Schema $schema): void
|
||
|
{
|
||
|
<down>
|
||
|
}
|
||
|
}
|