Add Column
Current Schema
CREATE TABLE group_preferences (
created_at DATETIME,
update_at DATETIME,
id CHAR(32) NOT NULL,
group_id CHAR(32) NOT NULL,
private_group BOOLEAN,
first_day_of_week INTEGER,
recipe_public BOOLEAN,
recipe_show_nutrition BOOLEAN,
recipe_show_assets BOOLEAN,
recipe_landscape_view BOOLEAN,
recipe_disable_comments BOOLEAN,
recipe_disable_amount BOOLEAN,
PRIMARY KEY (id),
FOREIGN KEY(group_id) REFERENCES groups (id)
)