+/- table definition

Query

CREATE TABLE admin_notifications  (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  type TEXT,
  title TEXT,
  message TEXT,
  agent_id INTEGER,
  status TEXT DEFAULT 'unread',
  created_at DATETIME DEFAULT CURRENT_TIMESTAMP
)
Use Shift + Up/Down to navigate recently-executed queries