[New Feature] Export Excel Request LOG

This commit is contained in:
2024-01-31 11:51:57 +07:00
parent 3ccb9c0a4c
commit 1721631ae6
5 changed files with 62 additions and 20 deletions

View File

@@ -14,8 +14,8 @@ return new class extends Migration
public function up()
{
Schema::table('request_logs', function (Blueprint $table) {
$table->dateTime('created_final_at');
$table->bigInteger('created_final_by');
$table->dateTime('created_final_at')->default(null);
$table->bigInteger('created_final_by')->default(null);
});
}