fix: [address] 주소 필드 255자 → 500자 확장

- DB 마이그레이션: clients, tenants, site_briefings, sites 테이블 address 컬럼 varchar(500)
- FormRequest 8개 파일 max:255 → max:500 변경
This commit is contained in:
김보곤
2026-03-04 11:29:08 +09:00
parent 76192fc177
commit 7cf70dbcaa
9 changed files with 42 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ public function rules(): array
{
return [
'name' => ['sometimes', 'string', 'max:100'],
'address' => ['nullable', 'string', 'max:255'],
'address' => ['nullable', 'string', 'max:500'],
'latitude' => ['nullable', 'numeric', 'between:-90,90'],
'longitude' => ['nullable', 'numeric', 'between:-180,180'],
'is_active' => ['sometimes', 'boolean'],