|
1 | 1 | -- Add new age, race, and sex strata, and season descriptor (YYYY-YY format) |
2 | 2 | ALTER TABLE `flusurv` ADD ( |
3 | | - `rate_age_18t29` double DEFAULT NULL, |
4 | | - `rate_age_30t39` double DEFAULT NULL, |
5 | | - `rate_age_40t49` double DEFAULT NULL, |
6 | | - `rate_age_5t11` double DEFAULT NULL, |
7 | | - `rate_age_12t17` double DEFAULT NULL, |
8 | | - `rate_age_lt18` double DEFAULT NULL, |
9 | | - `rate_age_gte18` double DEFAULT NULL, |
10 | | - `rate_race_white` double DEFAULT NULL, |
11 | | - `rate_race_black` double DEFAULT NULL, |
12 | | - `rate_race_hisp` double DEFAULT NULL, |
13 | | - `rate_race_asian` double DEFAULT NULL, |
14 | | - `rate_race_natamer` double DEFAULT NULL, |
15 | | - `rate_sex_male` double DEFAULT NULL, |
16 | | - `rate_sex_female` double DEFAULT NULL, |
17 | | - `rate_age_0tlt1` double DEFAULT NULL, |
18 | | - `rate_age_1t4` double DEFAULT NULL, |
19 | | - `rate_age_gte75` double DEFAULT NULL, |
20 | | - `rate_flu_a` double DEFAULT NULL, |
21 | | - `rate_flu_b` double DEFAULT NULL, |
22 | | - `season` char(7) DEFAULT NULL, |
| 3 | + `season` char(7) DEFAULT NULL, |
| 4 | + `rate_age_18t29` double DEFAULT NULL, |
| 5 | + `rate_age_30t39` double DEFAULT NULL, |
| 6 | + `rate_age_40t49` double DEFAULT NULL, |
| 7 | + `rate_age_5t11` double DEFAULT NULL, |
| 8 | + `rate_age_12t17` double DEFAULT NULL, |
| 9 | + `rate_age_lt18` double DEFAULT NULL, |
| 10 | + `rate_age_gte18` double DEFAULT NULL, |
| 11 | + `rate_age_1t4` double DEFAULT NULL, |
| 12 | + `rate_age_gte75` double DEFAULT NULL, |
| 13 | + `rate_age_0tlt1` double DEFAULT NULL, |
| 14 | + `rate_race_white` double DEFAULT NULL, |
| 15 | + `rate_race_black` double DEFAULT NULL, |
| 16 | + `rate_race_hisp` double DEFAULT NULL, |
| 17 | + `rate_race_asian` double DEFAULT NULL, |
| 18 | + `rate_race_natamer` double DEFAULT NULL, |
| 19 | + `rate_sex_male` double DEFAULT NULL, |
| 20 | + `rate_sex_female` double DEFAULT NULL, |
| 21 | + `rate_flu_a` double DEFAULT NULL, |
| 22 | + `rate_flu_b` double DEFAULT NULL |
23 | 23 | ); |
0 commit comments