Skip to content

Commit

Permalink
add new columns to flusurv endpoint spec
Browse files Browse the repository at this point in the history
  • Loading branch information
nmdefries committed Feb 10, 2025
1 parent cf2fcec commit 16634f8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/ddl/fluview.sql
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ CREATE TABLE `flusurv` (
`epiweek` int(11) NOT NULL,
`location` varchar(32) NOT NULL,
`lag` int(11) NOT NULL,
`season` char(7) DEFAULT NULL,
`rate_age_0` double DEFAULT NULL,
`rate_age_1` double DEFAULT NULL,
`rate_age_2` double DEFAULT NULL,
Expand All @@ -382,6 +383,23 @@ CREATE TABLE `flusurv` (
`rate_age_5` double DEFAULT NULL,
`rate_age_6` double DEFAULT NULL,
`rate_age_7` double DEFAULT NULL,
`rate_age_18t29` double DEFAULT NULL,
`rate_age_30t39` double DEFAULT NULL,
`rate_age_40t49` double DEFAULT NULL,
`rate_age_5t11` double DEFAULT NULL,
`rate_age_12t17` double DEFAULT NULL,
`rate_age_lt18` double DEFAULT NULL,
`rate_age_gte18` double DEFAULT NULL,
`rate_age_1t4` double DEFAULT NULL,
`rate_age_gte75` double DEFAULT NULL,
`rate_age_0tlt1` double DEFAULT NULL,
`rate_race_white` double DEFAULT NULL,
`rate_race_black` double DEFAULT NULL,
`rate_race_hisp` double DEFAULT NULL,
`rate_race_asian` double DEFAULT NULL,
`rate_race_natamer` double DEFAULT NULL,
`rate_sex_male` double DEFAULT NULL,
`rate_sex_female` double DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `issue` (`issue`,`epiweek`,`location`),
KEY `release_date` (`release_date`),
Expand Down

0 comments on commit 16634f8

Please sign in to comment.