Add Column
Current Schema
CREATE TABLE recipe_instructions (
created_at DATETIME,
update_at DATETIME,
id CHAR(32) NOT NULL,
recipe_id CHAR(32),
position INTEGER,
type VARCHAR,
title VARCHAR,
text VARCHAR,
summary VARCHAR,
PRIMARY KEY (id),
FOREIGN KEY(recipe_id) REFERENCES recipes (id)
)