0
Fork 0
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:
Gao Sun 2023-01-28 20:03:07 +08:00
parent de4b0bae16
commit 5027203e29
No known key found for this signature in database
GPG key ID: 13EBE123E4773688

View file

@ -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;`);