Add Column
Current Schema
CREATE TABLE recipe_share_tokens (
created_at DATETIME,
update_at DATETIME,
id CHAR(32) NOT NULL,
group_id CHAR(32) NOT NULL,
recipe_id CHAR(32) NOT NULL,
expires_at DATETIME NOT NULL,
PRIMARY KEY (id),
FOREIGN KEY(group_id) REFERENCES groups (id),
FOREIGN KEY(recipe_id) REFERENCES recipes (id)
)