Add Column
Current Schema
CREATE TABLE recipe_comments (
created_at DATETIME,
update_at DATETIME,
id CHAR(32) NOT NULL,
text VARCHAR,
recipe_id CHAR(32) NOT NULL,
user_id CHAR(32) NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(recipe_id) REFERENCES recipes (id),
FOREIGN KEY(user_id) REFERENCES users (id)
)