Add Column

Cancel

Current Schema

CREATE TABLE "recipe_actions"  (
  id CHAR(32) NOT NULL,
  group_id CHAR(32) NOT NULL,
  action_type VARCHAR NOT NULL,
  title VARCHAR NOT NULL,
  url VARCHAR NOT NULL,
  created_at DATETIME,
  update_at DATETIME,
  household_id CHAR(32),
  PRIMARY KEY (id),
  CONSTRAINT fk_recipe_actions_household_id FOREIGN KEY(household_id) REFERENCES households (id),
  FOREIGN KEY(group_id) REFERENCES groups (id)
)