Boolean field
Simple yes/no toggles. Stored as TINYINT(1) — 0 or 1.
Configuration
| Setting | Default | Notes |
|---|---|---|
| Required | no | |
| Default value | 0 (false) | |
| True label | "Yes" | What the UI shows when true |
| False label | "No" | What the UI shows when false |
| Indexed | no | Add an index for fast filtering |
Form rendering
A toggle switch or checkbox (configurable in the form designer). Toggle is the default for new forms; checkbox for compact layouts.
List rendering
"Yes" / "No" badge (green/grey) or the custom true/false labels if configured. NULL renders as —.
EQL operators supported
:, !=, is null, is not null. Value must be 1 (true) or 0 (false) in EQL.