[FEAT] 完善帳號管理狀態切換功能、優化多語系提示與 UI 樣式一致性
All checks were successful
star-cloud-deploy-demo / deploy-demo (push) Successful in 42s

This commit is contained in:
2026-03-25 17:16:41 +08:00
parent c015666f87
commit b7ff8ac01c
17 changed files with 349 additions and 46 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('maintenance_records', function (Blueprint $table) {
$table->boolean('is_confirmed')->default(false)->after('photos')->comment('已確認告知客戶並簽名');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('maintenance_records', function (Blueprint $table) {
$table->dropColumn('is_confirmed');
});
}
};