app_settings
사용자의 앱 설정을 JSON으로 보관합니다.
| Column name | Type | Index | Description |
|---|---|---|---|
| id | int(10) unsigned auto_increment | Primary Key | |
| key | varchar(255) utf8mb4_unicode_ci | Index | 앱 설정 이름 |
| value | json | 앱 설정 값 | |
| eagerload | tinyint(1) default 0 | Index | 값이 1인 경우 매 request마다 앱 설정 값을 eagerload 합니다. |
| created_at | timestamp nullable | ||
| updated_at | timestamp nullable |