removed module category from json

This commit is contained in:
Denis Duliçi
2020-07-21 00:01:26 +03:00
parent 1cd85d446c
commit d934bc419e
11 changed files with 65 additions and 17 deletions

View File

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CoreV2017 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('module_histories', function (Blueprint $table) {
$table->dropColumn('category');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}