diff --git a/kitchen/migrations/20240701002811_recipe-servings.down.sql b/kitchen/migrations/20240701002811_recipe-servings.down.sql new file mode 100644 index 0000000..eea316a --- /dev/null +++ b/kitchen/migrations/20240701002811_recipe-servings.down.sql @@ -0,0 +1,2 @@ +-- Add down migration script here +ALTER TABLE recipes DROP COLUMN serving_count; diff --git a/kitchen/migrations/20240701002811_recipe-servings.up.sql b/kitchen/migrations/20240701002811_recipe-servings.up.sql new file mode 100644 index 0000000..e1e3920 --- /dev/null +++ b/kitchen/migrations/20240701002811_recipe-servings.up.sql @@ -0,0 +1,2 @@ +-- Add up migration script here +ALTER TABLE recipes ADD column serving_count number;