1
0
mirror of https://github.com/flarum/core.git synced 2025-08-21 23:56:33 +02:00

Update for composer branch

This commit is contained in:
Toby Zerner
2015-10-11 17:30:11 +10:30
parent 0746d0aee3
commit fde7921487
27 changed files with 731 additions and 290 deletions

View File

@@ -8,18 +8,13 @@
* file that was distributed with this source code.
*/
namespace Flarum\Migrations\Subscriptions;
namespace Flarum\Subscriptions\Migration;
use Flarum\Database\AbstractMigration;
use Illuminate\Database\Schema\Blueprint;
use Flarum\Migrations\Migration;
class AddSubscriptionToUsersDiscussionsTable extends Migration
class AddSubscriptionToUsersDiscussionsTable extends AbstractMigration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$this->schema->table('users_discussions', function (Blueprint $table) {
@@ -27,11 +22,6 @@ class AddSubscriptionToUsersDiscussionsTable extends Migration
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$this->schema->table('users_discussions', function (Blueprint $table) {