记录所有人在线时长:允许 user_position_id 为空,移除记录日志时的职务判断

This commit is contained in:
2026-03-18 21:44:53 +08:00
parent 36cc934f7a
commit 363a0145d9
3 changed files with 32 additions and 9 deletions

View File

@@ -0,0 +1,28 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('position_duty_logs', function (Blueprint $table) {
$table->unsignedBigInteger('user_position_id')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('position_duty_logs', function (Blueprint $table) {
$table->unsignedBigInteger('user_position_id')->nullable(false)->change();
});
}
};