+/- table definition

Query

CREATE TABLE notes  (
  created_at DATETIME,
  update_at DATETIME,
  id INTEGER NOT NULL,
  recipe_id CHAR(32),
  title VARCHAR,
  text VARCHAR,
  PRIMARY KEY (id),
  FOREIGN KEY(recipe_id) REFERENCES recipes (id)
)
Use Shift + Up/Down to navigate recently-executed queries