CREATE TABLE recipes (
  recipe_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
  partition_id SMALLINT,
  title VARCHAR(50)
)