Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert some changes to captext view #1780

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions backend/dissemination/api/api_v1_0_0_beta/create_views.sql
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,10 @@ create view api_v1_0_0_beta.cap_text as
gen.fy_start_date,
gen.fy_end_date,
gen.audit_year,
ct.finding_ref_number,
ct.charts_tables,
ct.sequence_number,
ct.text,
ct.dbkey,
ct.audit_year,
ct.is_public
ct.*
from dissemination_CAPText ct
left join dissemination_General gen on ct.report_id = gen.report_id
where gen.is_public=True and ct.is_public=True
where gen.is_public=True
;

create view api_v1_0_0_beta.note as
Expand Down