Publish ITWorx Pulse source
Public source validation / validate (push) Failing after 3m8s

This commit is contained in:
ITWorx Pulse release export
2026-09-03 02:09:19 +02:00
commit bd774932d5
614 changed files with 77116 additions and 0 deletions
@@ -0,0 +1,16 @@
CREATE INDEX IF NOT EXISTS entities_type_canonical_idx
ON entities (entity_type, canonical_name, id)
WHERE tombstoned_at IS NULL;
CREATE INDEX IF NOT EXISTS entities_status_canonical_idx
ON entities (status, canonical_name, id)
WHERE tombstoned_at IS NULL;
CREATE INDEX IF NOT EXISTS entity_relations_source_entity_idx
ON entity_relations (source_entity_id, relation_type, target_entity_id);
CREATE INDEX IF NOT EXISTS entity_relations_target_entity_idx
ON entity_relations (target_entity_id, relation_type, source_entity_id);
CREATE INDEX IF NOT EXISTS entity_facts_freshness_idx
ON entity_facts (entity_id, valid_until, field_name, observed_at DESC);