Setting categorization system

This categorization system aims to prevent mixing different options together.
This commit is contained in:
2021-01-06 01:29:01 +00:00
parent baddf3fc76
commit abace4e85b
5 changed files with 91 additions and 31 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddCategoryToOptions extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('options', function (Blueprint $table) {
$table->string('option_category')->after('friendly_name')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('options', function (Blueprint $table) {
$table->dropColumn('option_category');
});
}
}