[graph-stats] fixed query after the change in the indicator table related to PR#200

This commit is contained in:
Miriam Baglioni 2022-03-02 14:09:05 +01:00
parent 580d904aae
commit 3be8737c32
1 changed files with 1 additions and 1 deletions

View File

@ -17,6 +17,6 @@ left outer join ${stats_db_name}.indi_pub_green_oa green on green.id=r.id;
-- GOLD OA:
create table ${stats_db_name}.result_gold as
select r.id, case when gold.gold_oa=1 then true else false end as gold
select r.id, case when gold.is_gold=1 then true else false end as gold
from ${stats_db_name}.result r
left outer join ${stats_db_name}.indi_pub_gold_oa gold on gold.id=r.id;