From 695afb8a8656978078fdecb4fd5b1497d8b5a826 Mon Sep 17 00:00:00 2001 From: hskwon Date: Wed, 3 Dec 2025 16:49:33 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20flow=5Fruns=20=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=20failed=5Fstep=20=EC=BB=AC=EB=9F=BC=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20=EB=B0=8F=20=EB=AC=B8=EC=84=9C=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LOGICAL_RELATIONSHIPS.md | 2 +- ...ep_column_in_admin_api_flow_runs_table.php | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 database/migrations/2025_12_02_232143_alter_failed_step_column_in_admin_api_flow_runs_table.php diff --git a/LOGICAL_RELATIONSHIPS.md b/LOGICAL_RELATIONSHIPS.md index 52105c9..850b2b5 100644 --- a/LOGICAL_RELATIONSHIPS.md +++ b/LOGICAL_RELATIONSHIPS.md @@ -1,6 +1,6 @@ # 논리적 데이터베이스 관계 문서 -> **자동 생성**: 2025-12-02 20:39:31 +> **자동 생성**: 2025-12-03 15:19:21 > **소스**: Eloquent 모델 관계 분석 ## 📊 모델별 관계 현황 diff --git a/database/migrations/2025_12_02_232143_alter_failed_step_column_in_admin_api_flow_runs_table.php b/database/migrations/2025_12_02_232143_alter_failed_step_column_in_admin_api_flow_runs_table.php new file mode 100644 index 0000000..91a022a --- /dev/null +++ b/database/migrations/2025_12_02_232143_alter_failed_step_column_in_admin_api_flow_runs_table.php @@ -0,0 +1,30 @@ +string('failed_step', 100)->nullable()->change(); + }); + } + + public function down(): void + { + Schema::table('admin_api_flow_runs', function (Blueprint $table) { + $table->smallInteger('failed_step')->nullable()->change(); + }); + } +};