Report Request LOG dan Final LOG

This commit is contained in:
2024-01-30 14:26:14 +07:00
parent c41181b93b
commit d92e2aba2e
13 changed files with 1135 additions and 11 deletions

View File

@@ -0,0 +1,34 @@
<?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('request_logs', function (Blueprint $table) {
$table->dateTime('created_final_at');
$table->bigInteger('created_final_by');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('request_logs', function (Blueprint $table) {
$table->dropColumn('created_final_at');
$table->dropColumn('created_final_by');
});
}
};