Filtrar
A carregar…
Guarda o link e completa os restantes campos à mão — título, foto, ingredientes, notas.
Ex: Jantar, Sobremesa, Vegetariano
O Supabase é gratuito e guarda as tuas receitas na cloud, acessíveis em qualquer dispositivo.
CREATE TABLE receitas (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
titulo text NOT NULL,
url text,
ingredientes text,
instrucoes text,
notas text,
tempo text,
tags text[],
imagem text,
criado_em timestamptz DEFAULT now()
);