mirror of
https://github.com/flarum/framework.git
synced 2025-02-08 14:55:15 +08:00
30 lines
407 B
Plaintext
30 lines
407 B
Plaintext
<?php
|
|
|
|
namespace Flarum\Migrations\{{extension}};
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Flarum\Migrations\Migration;
|
|
|
|
class {{name}} extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
//
|
|
}
|
|
}
|