+/- table definition

Query

CREATE TABLE channel  (
  id TEXT NOT NULL,
  user_id TEXT,
  name TEXT,
  description TEXT,
  data JSON,
  meta JSON,
  access_control JSON,
  created_at BIGINT,
  updated_at BIGINT,
  type TEXT,
  PRIMARY KEY (id),
  UNIQUE (id)
)
Use Shift + Up/Down to navigate recently-executed queries