12 lines
192 B
MySQL
12 lines
192 B
MySQL
|
|
-- Verify rsugest:recipe-table on pg
|
||
|
|
|
||
|
|
BEGIN;
|
||
|
|
|
||
|
|
|
||
|
|
select id, title, url, site_name, cuisine, category, description,
|
||
|
|
cook_time, prep_time, yields
|
||
|
|
FROM recipe.recipe
|
||
|
|
WHERE FALSE;
|
||
|
|
|
||
|
|
ROLLBACK;
|