From a4961fd09f3e92748c4c539d204c6df8cb21b436 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Mon, 5 Jan 2026 10:34:52 +0000 Subject: [PATCH] fix: update outdated extension names from db-meta-* to metaschema-* - DB_REQUIRED_EXTENSIONS: db-meta-schema -> metaschema-schema - SERVICE_REQUIRED_EXTENSIONS: db-meta-schema -> metaschema-schema, db-meta-modules -> metaschema-modules --- pgpm/core/src/export/export-migrations.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pgpm/core/src/export/export-migrations.ts b/pgpm/core/src/export/export-migrations.ts index a2e46a201..659d13cff 100644 --- a/pgpm/core/src/export/export-migrations.ts +++ b/pgpm/core/src/export/export-migrations.ts @@ -23,7 +23,7 @@ const DB_REQUIRED_EXTENSIONS = [ 'btree_gist', 'postgis', 'hstore', - 'db-meta-schema', + 'metaschema-schema', 'pgpm-inflection', 'pgpm-uuid', 'pgpm-utils', @@ -41,8 +41,8 @@ const DB_REQUIRED_EXTENSIONS = [ */ const SERVICE_REQUIRED_EXTENSIONS = [ 'plpgsql', - 'db-meta-schema', - 'db-meta-modules' + 'metaschema-schema', + 'metaschema-modules' ] as const; /**