mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 05:36:00 +00:00
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
module.exports = `
|
|
select
|
|
table_name as "pure_name",
|
|
table_schema as "schema_name",
|
|
md5(view_definition) as "hash_code"
|
|
from
|
|
information_schema.views where table_schema != 'information_schema' and table_schema != 'pg_catalog'
|
|
`;
|