phpvms/resources/stubs/modules/migration/plain.stub

29 lines
405 B
Plaintext
Raw Normal View History

2017-12-14 12:24:41 +08:00
<?php
use App\Models\Migrations\Migration;
2017-12-14 12:24:41 +08:00
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
class $CLASS$ extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}