Add report_file_id to audits and trust_center_document_accesses

Signed-off-by: Ludovic Vielle <ludovic@probo.com>
This commit is contained in:
Ludovic Vielle
2026-06-03 22:00:37 +02:00
parent 6f2e5737d4
commit b0a0f0efc9

View File

@@ -0,0 +1,74 @@
-- Copyright (c) 2025-2026 Probo Inc <hello@getprobo.com>.
--
-- Permission to use, copy, modify, and/or distribute this software for any
-- purpose with or without fee is hereby granted, provided that the above
-- copyright notice and this permission notice appear in all copies.
--
-- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
-- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
-- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
-- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
-- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-- PERFORMANCE OF THIS SOFTWARE.
ALTER TABLE audits
ADD COLUMN report_file_id TEXT REFERENCES files(id);
ALTER TABLE trust_center_document_accesses
ADD COLUMN report_file_id TEXT REFERENCES files(id);
ALTER TABLE trust_center_document_accesses
DROP CONSTRAINT trust_center_document_accesses_check;
/* 25 is for FileEntityType */
WITH report_files AS (
SELECT
r.id AS report_id,
generate_gid(decode_base64_unpadded(r.tenant_id), 25) AS file_id,
r.tenant_id,
r.organization_id,
'probod' AS bucket_name,
r.mime_type,
r.filename AS file_name,
r.object_key::uuid AS file_key,
r.size AS file_size,
r.created_at,
r.updated_at
FROM reports r
),
inserted_files AS (
INSERT INTO files (
id, tenant_id, organization_id, bucket_name,
mime_type, file_name, file_key, file_size,
visibility, created_at, updated_at
)
SELECT
file_id, tenant_id, organization_id, bucket_name,
mime_type, file_name, file_key, file_size,
'PRIVATE', created_at, updated_at
FROM report_files
)
SELECT rf.report_id, rf.file_id
INTO TEMP TABLE report_file_mapping
FROM report_files rf;
UPDATE audits a
SET report_file_id = rfm.file_id
FROM report_file_mapping rfm
WHERE a.report_id = rfm.report_id;
UPDATE trust_center_document_accesses tcda
SET report_file_id = rfm.file_id,
report_id = NULL
FROM report_file_mapping rfm
WHERE tcda.report_id = rfm.report_id;
ALTER TABLE trust_center_document_accesses
ADD CONSTRAINT trust_center_document_accesses_check CHECK (
(document_id IS NOT NULL)::int + (report_id IS NOT NULL)::int + (trust_center_file_id IS NOT NULL)::int + (report_file_id IS NOT NULL)::int = 1
);
ALTER TABLE trust_center_document_accesses
ADD CONSTRAINT trust_center_document_accesses_trust_center_access_id_report_file_key
UNIQUE (trust_center_access_id, report_file_id);