Query
CREATE TABLE recipe_ingredient_ref_link (
id INTEGER NOT NULL,
created_at DATETIME,
update_at DATETIME,
instruction_id CHAR(32),
reference_id CHAR(32),
PRIMARY KEY (id),
FOREIGN KEY(instruction_id) REFERENCES recipe_instructions (id)
)