2024-10-11 22:35:40 -05:00

12 lines
286 B
SQL

CREATE TABLE IF NOT EXISTS main_recipes (
id SERIAL PRIMARY KEY,
name VARCHAR,
author INTEGER,
description TEXT,
creation_date TIMESTAMP,
custom_items JSONB,
pantry_items JSONB,
group_items JSONB,
instructions TEXT [],
picture_path TEXT
);