+/- table definition

Query

CREATE TABLE "cookbooks_to_tags"  (
  cookbook_id CHAR(32),
  tag_id CHAR(32),
  CONSTRAINT cookbook_id_tag_id_key UNIQUE (cookbook_id, tag_id),
  FOREIGN KEY(cookbook_id) REFERENCES cookbooks (id),
  FOREIGN KEY(tag_id) REFERENCES tags (id)
)
Use Shift + Up/Down to navigate recently-executed queries