ai_sandbox/sqitch/verify/ingredient-table.sql

12 lines
261 B
MySQL
Raw Normal View History

2024-02-16 00:30:19 -05:00
-- Verify rsugest:ingredient-table on pg
BEGIN;
SELECT id, recipe_id, text, purpose, name, name_conf,
amount_quantity, amount_unit, amount_conf, preparation,
preparation_conf, comment, comment_conf
FROM recipe.ingredient
WHERE FALSE;
ROLLBACK;