add view for list subscriptions #146

Merged
hsh-timotheuspokorra merged 3 commits from TP-20250113-list-subscription-view into master 2025-01-16 13:57:27 +01:00
2 changed files with 17 additions and 1 deletions

View File

@ -0,0 +1,14 @@
--liquibase formatted sql
-- ============================================================================
--changeset timotheus.pokorra:hs-global-integration-znuny endDelimiter:--//
CREATE OR REPLACE VIEW hs_integration.subscription AS
SELECT DISTINCT
relation.mark as subscription,
contact.emailaddresses->>'main' as email
FROM hs_office.contact AS contact
JOIN hs_office.relation AS relation ON relation.contactuuid = contact.uuid AND relation.type = 'SUBSCRIBER'
ORDER BY subscription, email;
--//

View File

@ -177,3 +177,5 @@ databaseChangeLog:
file: db/changelog/9-hs-global/9110-integration-kimai.sql file: db/changelog/9-hs-global/9110-integration-kimai.sql
- include: - include:
file: db/changelog/9-hs-global/9120-integration-znuny.sql file: db/changelog/9-hs-global/9120-integration-znuny.sql
- include:
file: db/changelog/9-hs-global/9130-integration-mlmmj.sql