mirror of
https://github.com/elyby/accounts.git
synced 2024-12-23 22:00:06 +05:30
23 lines
288 B
PHP
23 lines
288 B
PHP
<?php
|
|
/**
|
|
* @var string $className the new migration class name
|
|
*/
|
|
|
|
echo "<?php\n";
|
|
?>
|
|
declare(strict_types=1);
|
|
|
|
use console\db\Migration;
|
|
|
|
final class <?= $className; ?> extends Migration {
|
|
|
|
public function safeUp(): void {
|
|
|
|
}
|
|
|
|
public function safeDown(): void {
|
|
|
|
}
|
|
|
|
}
|