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.