chore: API Flow Tester 설정 및 문서 업데이트

- flow-tester-auth.json: 인증 API 테스트 설정 추가
- flow-tester-client.json: Client API 테스트 설정 업데이트
- flow-tester-item-master.json: ItemMaster API 테스트 설정 추가
- LOGICAL_RELATIONSHIPS.md: 논리 관계 문서 업데이트
This commit is contained in:
2025-12-04 22:22:46 +09:00
parent 2b57910ca5
commit c946fa457c
4 changed files with 273 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
# 논리적 데이터베이스 관계 문서
> **자동 생성**: 2025-12-03 15:19:21
> **자동 생성**: 2025-12-04 20:56:47
> **소스**: Eloquent 모델 관계 분석
## 📊 모델별 관계 현황
@@ -332,6 +332,27 @@ ### lot_sales
- **lot()**: belongsTo → `lots`
### quotes
**모델**: `App\Models\Quote\Quote`
- **client()**: belongsTo → `clients`
- **finalizer()**: belongsTo → `users`
- **creator()**: belongsTo → `users`
- **updater()**: belongsTo → `users`
- **items()**: hasMany → `quote_items`
- **revisions()**: hasMany → `quote_revisions`
### quote_items
**모델**: `App\Models\Quote\QuoteItem`
- **quote()**: belongsTo → `quotes`
### quote_revisions
**모델**: `App\Models\Quote\QuoteRevision`
- **quote()**: belongsTo → `quotes`
- **reviser()**: belongsTo → `users`
### departments
**모델**: `App\Models\Tenants\Department`