mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
chore: fix script indent
This commit is contained in:
parent
de4b0bae16
commit
5027203e29
1 changed files with 14 additions and 15 deletions
|
@ -70,8 +70,7 @@ const queryDatabaseManifest = async (database) => {
|
||||||
left join pg_type t on t.oid = p.prorettype
|
left join pg_type t on t.oid = p.prorettype
|
||||||
where n.nspname not in ('pg_catalog', 'information_schema')
|
where n.nspname not in ('pg_catalog', 'information_schema')
|
||||||
and l.lanname != 'c' -- Filter out c functions since we don't use them
|
and l.lanname != 'c' -- Filter out c functions since we don't use them
|
||||||
order by schema_name,
|
order by schema_name, specific_name;
|
||||||
specific_name;
|
|
||||||
`);
|
`);
|
||||||
|
|
||||||
const { rows: triggers } = await pool.query(/* sql */`select * from information_schema.triggers;`);
|
const { rows: triggers } = await pool.query(/* sql */`select * from information_schema.triggers;`);
|
||||||
|
|
Loading…
Reference in a new issue