CREATE TABLE IF NOT EXISTS prefs ( key TEXT PRIMARY KEY, val TEXT ); CREATE INDEX IF NOT EXISTS key_idx ON prefs (key);