mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 12:47:25 +00:00
10 lines
269 B
JavaScript
10 lines
269 B
JavaScript
module.exports = `
|
|
select
|
|
table_name as "pureName",
|
|
table_schema as "schemaName",
|
|
view_definition as "createSql",
|
|
md5(view_definition) as "hashCode"
|
|
from
|
|
information_schema.views where table_schema != 'information_schema' and table_schema != 'pg_catalog'
|
|
`;
|