pub const SQLITE_DDL_V3: &[(&str, &str)];Expand description
SQLite DDL for the auth schema, version 3 — Zanzibar / ReBAC.
Mirrors PG_DDL_V3 with JSONB → TEXT (caller round-trips
via serde_json), DOUBLE PRECISION → REAL. SQLite’s
default CURRENT_TIMESTAMP returns a string, not a unix epoch
double, so the SQLite store binds the timestamp explicitly on
every insert (matches the rest of the auth schema’s discipline).
Treats subject_rel exactly as PG does: empty string for direct
subjects, relation name for usersets. The empty-string sentinel
avoids the NULL-vs-PK-NOT-NULL conflict the original schema had
(see PG DDL note above).