api recipe and ingredient, GET and PUT

This commit is contained in:
2024-02-16 00:30:19 -05:00
parent 7e4c1dca7e
commit 4ddb2ea8ff
18 changed files with 610 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
-- Revert rsugest:ingredient-table from pg
BEGIN;
DROP TABLE recipe.ingredient;
COMMIT;

View File

@@ -0,0 +1,7 @@
-- Revert rsugest:recipe-schema from pg
BEGIN;
DROP SCHEMA recipe;
COMMIT;

View File

@@ -0,0 +1,7 @@
-- Revert rsugest:recipe-table from pg
BEGIN;
DROP TABLE recipe.recipe;
COMMIT;