@pgpmjs/core 4.12.0 → 4.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -226,14 +226,6 @@ const config = {
|
|
|
226
226
|
privilege: 'text'
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
|
-
extension: {
|
|
230
|
-
schema: 'metaschema_public',
|
|
231
|
-
table: 'extension',
|
|
232
|
-
fields: {
|
|
233
|
-
id: 'uuid',
|
|
234
|
-
name: 'text'
|
|
235
|
-
}
|
|
236
|
-
},
|
|
237
229
|
// =============================================================================
|
|
238
230
|
// services_public tables
|
|
239
231
|
// =============================================================================
|
|
@@ -823,7 +815,6 @@ export const exportMeta = async ({ opts, dbname, database_id }) => {
|
|
|
823
815
|
await queryAndParse('full_text_search', `SELECT * FROM metaschema_public.full_text_search WHERE database_id = $1`);
|
|
824
816
|
await queryAndParse('schema_grant', `SELECT * FROM metaschema_public.schema_grant WHERE database_id = $1`);
|
|
825
817
|
await queryAndParse('table_grant', `SELECT * FROM metaschema_public.table_grant WHERE database_id = $1`);
|
|
826
|
-
await queryAndParse('extension', `SELECT * FROM metaschema_public.extension`);
|
|
827
818
|
// =============================================================================
|
|
828
819
|
// services_public tables
|
|
829
820
|
// =============================================================================
|
package/export/export-meta.js
CHANGED
|
@@ -229,14 +229,6 @@ const config = {
|
|
|
229
229
|
privilege: 'text'
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
|
-
extension: {
|
|
233
|
-
schema: 'metaschema_public',
|
|
234
|
-
table: 'extension',
|
|
235
|
-
fields: {
|
|
236
|
-
id: 'uuid',
|
|
237
|
-
name: 'text'
|
|
238
|
-
}
|
|
239
|
-
},
|
|
240
232
|
// =============================================================================
|
|
241
233
|
// services_public tables
|
|
242
234
|
// =============================================================================
|
|
@@ -826,7 +818,6 @@ const exportMeta = async ({ opts, dbname, database_id }) => {
|
|
|
826
818
|
await queryAndParse('full_text_search', `SELECT * FROM metaschema_public.full_text_search WHERE database_id = $1`);
|
|
827
819
|
await queryAndParse('schema_grant', `SELECT * FROM metaschema_public.schema_grant WHERE database_id = $1`);
|
|
828
820
|
await queryAndParse('table_grant', `SELECT * FROM metaschema_public.table_grant WHERE database_id = $1`);
|
|
829
|
-
await queryAndParse('extension', `SELECT * FROM metaschema_public.extension`);
|
|
830
821
|
// =============================================================================
|
|
831
822
|
// services_public tables
|
|
832
823
|
// =============================================================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pgpmjs/core",
|
|
3
|
-
"version": "4.12.
|
|
3
|
+
"version": "4.12.2",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "PGPM Package and Migration Tools",
|
|
6
6
|
"main": "index.js",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"pgsql-parser": "^17.9.11",
|
|
65
65
|
"yanse": "^0.1.11"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "8ba31ce871a6fec054ee6ea5627f44d69c635828"
|
|
68
68
|
}
|