If this is the only issue with the DB, you can run these queries to re-create the table. But it might not work if this error is a symptom of something else being wrong
create table if not exists public.geodata_places
(
id integer not null
constraint "PK_c29918988912ef4036f3d7fbff4"
primary key,
name varchar(200) not null,
longitude double precision not null,
latitude double precision not null,
"countryCode" char(2) not null,
"admin1Code" varchar(20),
"admin2Code" varchar(80),
"modificationDate" date not null,
"earthCoord" earth generated always as (ll_to_earth(latitude, longitude)) stored,
"admin1Key" varchar generated always as (((("countryCode")::text || '.'::text) || ("admin1Code")::text)) stored,
"admin2Key" varchar generated always as ((
(((("countryCode")::text || '.'::text) || ("admin1Code")::text) || '.'::text) ||
("admin2Code")::text)) stored
)
with (fillfactor = 100);
alter table public.geodata_places
owner to postgres;