1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00
This commit is contained in:
Toby Zerner
2015-08-17 14:11:45 +09:30
parent 1c89f62165
commit 4f17b104b5
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');
}
}