7 lines
183 B
SQL
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()
|
|
);
|