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,
    install_instructions TEXT
);
"#;
Expand description

SQL statement to create the physical table apps.