Update fitur impor dan history exlusion

This commit is contained in:
2023-09-19 14:54:19 +07:00
parent e8f90772de
commit 7ee4a3ef38
23 changed files with 1708 additions and 23 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('icd', function (Blueprint $table) {
$table->integer('active');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('icd', function (Blueprint $table) {
$table->dropColumn('active');
});
}
};