Skip to main content

WHERE

Constant WHERE 

Source
pub const WHERE: IndexMarker;
Expand description

Specifies a partial-index predicate as raw SQLite SQL.

Use database column names in the predicate. Rust field or column renames do not rewrite this string.

ยงExample

#[SQLiteIndex(where = "deleted_at IS NULL")]
struct ActiveUsersEmailIdx(Users::email);

See: https://sqlite.org/partialindex.html