@platform-modules/civil-aviation-authority 2.3.264 → 2.3.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/scripts/sync-sla-reports-sql.js +94 -0
- package/sql/README.md +25 -0
- package/sql/sla-reports-sync.manifest.json +7 -0
- package/sql/sla_reports_admin_procedures.sql +283 -0
- package/sql/sla_reports_approvals_workbook.sql +383 -0
- package/sql/sla_reports_procedures.sql +874 -0
- package/sql/vw_sla_my_requests.sql +1 -2
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
-- SLA "my requests" read model: joined display names + filtered request_obj payload.
|
|
2
|
-
--
|
|
3
|
-
-- psql -U <user> -d <database> -f sql/vw_sla_my_requests.sql
|
|
2
|
+
-- Applied via: npm run sync:sla-sql (shared_models)
|
|
4
3
|
|
|
5
4
|
CREATE OR REPLACE VIEW vw_sla_my_requests AS
|
|
6
5
|
SELECT
|