24 lines
520 B
SQL
24 lines
520 B
SQL
create table public.meteo_data
|
|
(
|
|
id serial primary key,
|
|
|
|
location_name citext not null,
|
|
max_temp float not null,
|
|
min_temp float not null,
|
|
rainfall float not null,
|
|
cloudiness float not null,
|
|
|
|
created_at timestamp not null default now()
|
|
);
|
|
|
|
create index idx_meteo_data_location_name on public.meteo_data (location_name);
|
|
|
|
create table public.rejected_data
|
|
(
|
|
id serial primary key,
|
|
raw_data text not null,
|
|
reason text default null,
|
|
|
|
created_at timestamp not null default now()
|
|
)
|