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 ); "#;
SQL statement to create the physical table apps.
apps