toolu-orm-core 0.2.0

Schema definitions, migrations and driver traits for toolu-orm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! FTS5 full-text tables on top of the general [`crate::table::TableKind::Virtual`]
//! mechanism.
//!
//! [`Fts5Table`] renders the module arguments — quoted column names,
//! `UNINDEXED` markers, and the `key = 'value'` options — so callers never
//! hand-write them. The `#[fts5_table]` proc macro expands into this builder,
//! so a macro-declared table and a hand-built one cannot drift apart.

mod builder;
mod options;

pub use builder::{Fts5Table, FTS5_MODULE};
pub use options::Fts5Options;