feat: 담당자에 소속·상호 필드 추가(#23)

- manager 테이블에 mg_affiliation(소속)·mg_company_name(상호) 컬럼 추가
  (공유 DB 반영 완료 + writable/database에 마이그레이션 SQL 기록)
- ManagerModel allowedFields, 등록/수정 폼(담당자명 아래), store/update 저장,
  목록에 소속·상호 열 추가
This commit is contained in:
taekyoungc
2026-07-03 18:35:12 +09:00
parent 4835b2daaf
commit f0d59b1694
6 changed files with 40 additions and 2 deletions

View File

@@ -13,7 +13,8 @@ class ManagerModel extends Model
protected $returnType = 'object';
protected $useTimestamps = false;
protected $allowedFields = [
'mg_lg_idx', 'mg_name', 'mg_dept_code', 'mg_position_code',
'mg_lg_idx', 'mg_name', 'mg_affiliation', 'mg_company_name',
'mg_dept_code', 'mg_position_code',
'mg_tel', 'mg_phone', 'mg_email', 'mg_state', 'mg_regdate',
];
}