COVID-19 Restrictions Timeseries
Greater London Authority
@ukgov.covid_19_restrictions_timeseries
Greater London Authority
@ukgov.covid_19_restrictions_timeseries
CREATE TABLE restrictions_daily (
"date" TIMESTAMP,
"schools_closed" BIGINT,
"pubs_closed" BIGINT,
"shops_closed" BIGINT,
"eating_places_closed" BIGINT,
"stay_at_home" BIGINT,
"household_mixing_indoors_banned" BIGINT,
"wfh" BIGINT,
"rule_of_6_indoors" BIGINT,
"curfew" BIGINT,
"eat_out_to_help_out" BIGINT
);
CREATE TABLE restrictions_summary (
"date" VARCHAR,
"restriction" VARCHAR,
"source" VARCHAR,
"schools_closed" BIGINT,
"pubs_closed" BIGINT,
"shops_closed" BIGINT,
"eating_places_closed" BIGINT,
"stay_at_home" BIGINT,
"household_mixing_indoors_banned" BIGINT,
"wfh" BIGINT,
"rule_of_6_indoors" BIGINT,
"curfew" BIGINT,
"eat_out_to_help_out" BIGINT
);
CREATE TABLE restrictions_weekly (
"week_start" TIMESTAMP,
"schools_closed" BIGINT,
"pubs_closed" BIGINT,
"shops_closed" BIGINT,
"eating_places_closed" BIGINT,
"stay_at_home" BIGINT,
"household_mixing_indoors_banned" BIGINT,
"wfh" BIGINT,
"rule_of_6_indoors" BIGINT,
"curfew" BIGINT,
"eat_out_to_help_out" BIGINT
);
Anyone who has the link will be able to view this.