Skip to content

Commit

Permalink
Update psql-schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriziofiorucci committed Dec 19, 2023
1 parent 7ead138 commit b42d90d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contrib/GUI/psql/psql-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ create table if not exists edw_ve_hostnames (
create view all_contracts as
select edw_customers.id as end_customer_id,edw_customers.end_customer_name,
edw_contracts.id as edw_contracts_id,legal_contract,start_date,end_date,
edw_salesorders.id as edw_salesorders_id,sales_order
edw_salesorders.id as edw_salesorders_id,sales_order,
archive_to_contract.id as archive_to_contract_id,
archive_to_contract.archive_uid
from edw_customers,edw_contracts,edw_salesorders,archive_to_contract
where edw_salesorders.legal_contract_id = edw_contracts.id
and edw_contracts.end_customer = edw_customers.id
Expand Down

0 comments on commit b42d90d

Please sign in to comment.