1
0
mirror of https://github.com/flarum/core.git synced 2025-07-30 21:20:24 +02:00

Namespace migrations to avoid potential conflicts

Core migrations are under the Flarum\Migrations\Core namespace.
Extension migrations must be under the
Flarum\Migrations\{ExtensionName} namespace.

closes #422
This commit is contained in:
Toby Zerner
2015-09-17 08:54:31 +09:30
parent 633f84bbe5
commit 7fb582e8d7
15 changed files with 34 additions and 18 deletions

View File

@@ -1,5 +1,4 @@
<?php
/*
* This file is part of Flarum.
*
@@ -9,6 +8,8 @@
* file that was distributed with this source code.
*/
namespace Flarum\Migrations\Core;
use Flarum\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;