mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
20 lines
239 B
PHP
20 lines
239 B
PHP
<?php
|
|
/* @var $className string the new migration class name */
|
|
|
|
echo "<?php\n";
|
|
?>
|
|
|
|
use console\db\Migration;
|
|
|
|
class <?= $className ?> extends Migration {
|
|
|
|
public function safeUp() {
|
|
|
|
}
|
|
|
|
public function safeDown() {
|
|
|
|
}
|
|
|
|
}
|