mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 17:57:04 +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()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|