+/- table definition

Query

CREATE TABLE chatbot_collections (
  id INTEGER PRIMARY KEY AUTOINCREMENT,
  chatbot_id INTEGER NOT NULL,
  collection_type TEXT NOT NULL,
  collection_name TEXT NOT NULL UNIQUE,
  created_at TEXT NOT NULL,
  UNIQUE(chatbot_id, collection_type)
)
Use Shift + Up/Down to navigate recently-executed queries