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');
}
}

View File

@ -30,8 +30,6 @@ class ApiServiceProvider extends ServiceProvider
return new UrlGenerator($this->app->make('flarum.api.routes'));
}
);
$this->app->register('Flarum\Locale\LocaleServiceProvider');
}
/**

View File

@ -26,8 +26,6 @@ class ForumServiceProvider extends ServiceProvider
return new UrlGenerator($this->app->make('flarum.forum.routes'));
}
);
$this->app->register('Flarum\Locale\LocaleServiceProvider');
}
/**