pub const WITHOUT_ROWID: TableMarker;Expand description
Enables WITHOUT ROWID optimization for the table.
ยงExample
#[SQLiteTable(without_rowid)]
struct KeyValue {
#[column(primary)]
key: String,
value: String,
}Requires an explicit PRIMARY KEY.