brand_requests
브랜드 추가 요청
| Column name | Type | Index | Description |
|---|---|---|---|
| id | int(10) unsigned auto_increment | Primary Key | |
| user_id | bigint(20) unsigned | Index |
BrandRequest belongsTo(User) relation key 브랜드 추가 요청을 한 사용자 id 로그인을 하지 않은 사용자가 브랜드 추가 요청을 작성하면 user_id를 NULL로 설정합니다. |
| name_en | varchar(255) nullable utf8mb4_unicode_ci | 브랜드 영문명 | |
| name_ko | varchar(255) nullable utf8mb4_unicode_ci | 브랜드 한글명 | |
| processed | tinyint(1) default 0 | 브랜드 추가 요청 처리 여부 | |
| created_at | timestamp nullable | ||
| updated_at | timestamp nullable |