pub const BOOLEAN: TypeMarker;Expand description
Specifies a BOOLEAN column (stored as INTEGER 0/1).
ยงExample
#[column(boolean)]
active: bool,SQLite has no native BOOLEAN. Values are stored as INTEGER (0 for false, 1 for true).
pub const BOOLEAN: TypeMarker;Specifies a BOOLEAN column (stored as INTEGER 0/1).
#[column(boolean)]
active: bool,SQLite has no native BOOLEAN. Values are stored as INTEGER (0 for false, 1 for true).