fix: remove schema from firebird

This commit is contained in:
Pavel
2025-05-15 13:22:01 +02:00
parent 3e0f834796
commit 06055a7c4c
10 changed files with 16 additions and 29 deletions

View File

@@ -1,9 +1,8 @@
module.exports = `
SELECT
TRIM(rtr.RDB$TRIGGER_NAME) as PURENAME,
TRIM(rtr.RDB$RELATION_NAME) as TABLENAME,
rtr.RDB$TRIGGER_TYPE as TRIGGERTYPE,
TRIM(rel.RDB$OWNER_NAME) AS SCHEMANAME
TRIM(rtr.RDB$TRIGGER_NAME) as "pureName",
TRIM(rtr.RDB$RELATION_NAME) as "tableName",
rtr.RDB$TRIGGER_TYPE as TRIGGERTYPE
FROM
RDB$TRIGGERS rtr
JOIN RDB$RELATIONS rel ON rtr.RDB$RELATION_NAME = rel.RDB$RELATION_NAME