Skip to main content

CREATE_APPS_FTS_TABLE

Constant CREATE_APPS_FTS_TABLE 

Source
pub const CREATE_APPS_FTS_TABLE: &str = r#"
CREATE VIRTUAL TABLE IF NOT EXISTS apps_fts USING fts5(
    cmd_path UNINDEXED,
    name,
    capabilities
);
"#;
Expand description

SQL statement to create the FTS5 virtual table apps_fts.