CREATE TABLE IF NOT EXISTS app_settings ( id TEXT PRIMARY KEY NOT NULL, show_quick_actions INTEGER NOT NULL DEFAULT 1, created_at TEXT NOT NULL DEFAULT (datetime('now')), updated_at TEXT NOT NULL DEFAULT (datetime('now')) ); INSERT OR IGNORE INTO app_settings (id, show_quick_actions) VALUES ('settings-main', 1);