mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-05-01 08:33:58 +00:00
feat: firebird FKs, PKs, procedures, funcs
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
module.exports = `
|
||||
SELECT
|
||||
TRIM(RDB$RELATION_NAME) AS pureName,
|
||||
RDB$DESCRIPTION AS objectComment,
|
||||
RDB$FORMAT AS objectTypeField,
|
||||
RDB$OWNER_NAME AS schemaName
|
||||
TRIM(RDB$RELATION_NAME) AS "pureName",
|
||||
RDB$DESCRIPTION AS "objectComment",
|
||||
RDB$FORMAT AS "objectTypeField",
|
||||
TRIM(RDB$OWNER_NAME) AS "schemaName"
|
||||
FROM RDB$RELATIONS
|
||||
WHERE RDB$SYSTEM_FLAG = 0 -- only user-defined tables
|
||||
ORDER BY pureName;
|
||||
ORDER BY "pureName";
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user