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);