This commit is contained in:
Toby Zerner
2015-08-17 14:11:45 +09:30
parent e8b23e9ec0
commit 17dbeefabe
3 changed files with 0 additions and 33 deletions

View File

@ -1,29 +0,0 @@
<?php
use Flarum\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateTestTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$this->schema->create('test', function (Blueprint $table) {
$table->increments('id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$this->schema->drop('test');
}
}