@@ -8,6 +8,7 @@ import PostgresMetaFunctions from './PostgresMetaFunctions.js'
8
8
import PostgresMetaMaterializedViews from './PostgresMetaMaterializedViews.js'
9
9
import PostgresMetaPolicies from './PostgresMetaPolicies.js'
10
10
import PostgresMetaPublications from './PostgresMetaPublications.js'
11
+ import PostgresMetaRelationships from './PostgresMetaRelationships.js'
11
12
import PostgresMetaRoles from './PostgresMetaRoles.js'
12
13
import PostgresMetaSchemas from './PostgresMetaSchemas.js'
13
14
import PostgresMetaTables from './PostgresMetaTables.js'
@@ -29,6 +30,7 @@ export default class PostgresMeta {
29
30
materializedViews : PostgresMetaMaterializedViews
30
31
policies : PostgresMetaPolicies
31
32
publications : PostgresMetaPublications
33
+ relationships : PostgresMetaRelationships
32
34
roles : PostgresMetaRoles
33
35
schemas : PostgresMetaSchemas
34
36
tables : PostgresMetaTables
@@ -53,6 +55,7 @@ export default class PostgresMeta {
53
55
this . materializedViews = new PostgresMetaMaterializedViews ( this . query )
54
56
this . policies = new PostgresMetaPolicies ( this . query )
55
57
this . publications = new PostgresMetaPublications ( this . query )
58
+ this . relationships = new PostgresMetaRelationships ( this . query )
56
59
this . roles = new PostgresMetaRoles ( this . query )
57
60
this . schemas = new PostgresMetaSchemas ( this . query )
58
61
this . tables = new PostgresMetaTables ( this . query )
0 commit comments