oracle: fixed analysing constraints

This commit is contained in:
Jan Prochazka
2024-05-31 16:45:33 +02:00
parent 8f5b395935
commit 2d1ac97191
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
module.exports = `
select constraint_name
select constraint_name as "constraintName"
from all_constraints
where OWNER='$owner' and constraint_type = 'U'
where owner='$owner' and constraint_type = 'U'
and constraint_name =OBJECT_ID_CONDITION
`;