Skip to main content

CREATE_APPS_TABLE

Constant CREATE_APPS_TABLE 

Source
pub const CREATE_APPS_TABLE: &str = r#"
CREATE TABLE IF NOT EXISTS apps (
    app_id TEXT PRIMARY KEY,
    name TEXT NOT NULL,
    os_aliases TEXT,
    install_instructions TEXT,
    popularity REAL DEFAULT 0.0
);
"#;
Expand description

SQL statement to create the physical table apps.