Toggle helper tables
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) )