Multiple foreign keys in a single field
This describes how to sync a multi-foreign key field in another app (e.g. Airtable) to Postgres or Supabase
Last updated
Was this helpful?
This describes how to sync a multi-foreign key field in another app (e.g. Airtable) to Postgres or Supabase
Last updated
Was this helpful?
Was this helpful?
CREATE TABLE public."Contacts" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid(),
"Email" text );
CREATE TABLE public."Company" (
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid(),
"Name" text,
"People_fk_Contacts" uuid[] );