Skip to content

Commit

Permalink
More fields in wage tables
Browse files Browse the repository at this point in the history
  • Loading branch information
TBleess authored Dec 7, 2023
1 parent 2f2b482 commit e0b27bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routes/wage_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = function(app, pg, conString) {

//schema.table combination
var schtbl = "data.average_wage";
var basequery = "SELECT area_code, population_year, sector_id, avg_wage, category";
var basequery = "SELECT area_code, population_year, sector_id, avg_wage, category, wage_source, wage_source_override";
// var statlist = "total_population";


Expand Down Expand Up @@ -179,7 +179,7 @@ module.exports = function(app, pg, conString) {

//schema.table combination
var schtbl = "data.wage_boundaries";
var basequery = "SELECT area_code, population_year, category, cat_jobs, sum_jobs, pct_jobs, leg_color, min_wage, max_wage, total_wage";
var basequery = "SELECT area_code, population_year, category, cat_jobs, sum_jobs, pct_jobs, leg_color, min_wage, max_wage, total_wage", "label";
// var statlist = "total_population";


Expand Down

0 comments on commit e0b27bf

Please sign in to comment.