+/- table definition

Query

CREATE TABLE workspaces  (
  id VARCHAR(50) NOT NULL,
  name VARCHAR(255) NOT NULL,
  project_id VARCHAR(50),
  windows JSON,
  window_layouts JSON,
  active BOOLEAN,
  created_at JSON NOT NULL,
  tenant_id VARCHAR(50) NOT NULL,
  license_tier JSON,
  description TEXT,
  updated_at JSON NOT NULL,
  last_accessed_at JSON,
  settings JSON,
  layout_config JSON,
  theme VARCHAR(255),
  ui_preferences JSON,
  active_workflows JSON,
  pinned_widgets JSON,
  PRIMARY KEY (id)
)
Use Shift + Up/Down to navigate recently-executed queries