diff --git a/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php b/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php index 2dabefa7..48a3645a 100644 --- a/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php +++ b/app/database/migrations/2015_01_04_194246_AlterTableComponentsAddGroupIdColumn.php @@ -6,27 +6,27 @@ use Illuminate\Support\Facades\Schema; class AlterTableComponentsAddGroupIdColumn extends Migration { - /** - * Run the migrations. - * - * @return void - */ - public function up() - { - Schema::table('components', function(Blueprint $table) { - $table->integer('group_id')->nullable()->default(null)->after('order'); - }); - } + /** + * Run the migrations. + * + * @return void + */ + public function up() + { + Schema::table('components', function (Blueprint $table) { + $table->integer('group_id')->nullable()->default(null)->after('order'); + }); + } - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::table('components', function(Blueprint $table) { - $table->dropColumn('group_id'); - }); - } + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('components', function (Blueprint $table) { + $table->dropColumn('group_id'); + }); + } }