Update exclusion corporate setting

This commit is contained in:
2023-09-21 18:06:34 +07:00
parent ae1b213ff0
commit e8c2396442
11 changed files with 321 additions and 6 deletions

View File

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