feat: recipe schema now has a setting for serving count

This commit is contained in:
Jeremy Wall 2024-06-30 20:32:57 -05:00
parent 9249dca202
commit ec18d9de97
2 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- Add down migration script here
ALTER TABLE recipes DROP COLUMN serving_count;

View File

@ -0,0 +1,2 @@
-- Add up migration script here
ALTER TABLE recipes ADD column serving_count number;