From cdec2519d95d6b5307352287114eb9580b135736 Mon Sep 17 00:00:00 2001 From: kent Date: Fri, 26 Dec 2025 19:15:35 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20Shipment=20=EB=AA=A8=EB=8D=B8=20?= =?UTF-8?q?=EA=B4=80=EA=B3=84=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - shipments, shipment_items 모델 관계 문서화 - 자동 생성 시간 업데이트 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- LOGICAL_RELATIONSHIPS.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/LOGICAL_RELATIONSHIPS.md b/LOGICAL_RELATIONSHIPS.md index f2dcd76..9c95aa1 100644 --- a/LOGICAL_RELATIONSHIPS.md +++ b/LOGICAL_RELATIONSHIPS.md @@ -1,6 +1,6 @@ # 논리적 데이터베이스 관계 문서 -> **자동 생성**: 2025-12-26 15:08:36 +> **자동 생성**: 2025-12-26 18:32:26 > **소스**: Eloquent 모델 관계 분석 ## 📊 모델별 관계 현황 @@ -679,6 +679,19 @@ ### setting_field_defs - **tenantSettings()**: hasMany → `tenant_field_settings` +### shipments +**모델**: `App\Models\Tenants\Shipment` + +- **creator()**: belongsTo → `users` +- **updater()**: belongsTo → `users` +- **items()**: hasMany → `shipment_items` + +### shipment_items +**모델**: `App\Models\Tenants\ShipmentItem` + +- **shipment()**: belongsTo → `shipments` +- **stockLot()**: belongsTo → `stock_lots` + ### sites **모델**: `App\Models\Tenants\Site`