ai_sandbox/sqitch/deploy/recipe-table.sql

19 lines
305 B
MySQL
Raw Normal View History

2024-02-16 00:30:19 -05:00
-- Deploy rsugest:recipe-table to pg
-- requires: recipe-schema
BEGIN;
CREATE TABLE recipe.recipe (
id SERIAL PRIMARY KEY,
title TEXT,
url TEXT,
site_name TEXT,
cuisine TEXT,
category TEXT,
description TEXT,
cook_time REAL,
prep_time REAL,
yields TEXT);
COMMIT;