38913-vm/app-9xzmfic2e4g1/supabase/migrations/00009_create_place_details_cache.sql
2026-03-04 12:43:13 +00:00

7 lines
183 B
SQL

-- Create table to cache Google Places API details
create table place_details_cache (
place_id text primary key,
details jsonb not null,
created_at timestamptz default now()
);