diff --git a/packages/inflection/README.md b/packages/inflection/README.md index f9dbfdf2..f7ffb998 100644 --- a/packages/inflection/README.md +++ b/packages/inflection/README.md @@ -297,7 +297,7 @@ SELECT slug FROM blog_posts; ## Integration Examples -### With @pgpm/db-meta-schema +### With @pgpm/metaschema-schema Use inflection for schema introspection and code generation: diff --git a/packages/metaschema-modules/README.md b/packages/metaschema-modules/README.md index 27e2c822..71653c98 100644 --- a/packages/metaschema-modules/README.md +++ b/packages/metaschema-modules/README.md @@ -1,4 +1,4 @@ -# @pgpm/db-meta-modules +# @pgpm/metaschema-modules
Module metadata handling and dependency tracking. ## Overview -`@pgpm/db-meta-modules` extends the `@pgpm/db-meta-schema` package with module-specific metadata tables. This package provides tables for tracking various pgpm modules including authentication, permissions, memberships, encrypted secrets, and more. It enables configuration and metadata storage for modular application features. +`@pgpm/metaschema-modules` extends the `@pgpm/metaschema-schema` package with module-specific metadata tables. This package provides tables for tracking various pgpm modules including authentication, permissions, memberships, encrypted secrets, and more. It enables configuration and metadata storage for modular application features. ## Features @@ -33,7 +33,7 @@ Module metadata handling and dependency tracking. If you have `pgpm` installed: ```bash -pgpm install @pgpm/db-meta-modules +pgpm install @pgpm/metaschema-modules pgpm deploy ``` @@ -56,7 +56,7 @@ eval "$(pgpm env)" ```bash # 1. Install the package -pgpm install @pgpm/db-meta-modules +pgpm install @pgpm/metaschema-modules # 2. Deploy locally pgpm deploy @@ -74,7 +74,7 @@ pgpm init # 3. Install a package cd packages/my-module -pgpm install @pgpm/db-meta-modules +pgpm install @pgpm/metaschema-modules # 4. Deploy everything pgpm deploy --createdb --database mydb1 @@ -213,7 +213,7 @@ Use module tables as feature flags: ## Dependencies -- `@pgpm/db-meta-schema`: Core metadata management +- `@pgpm/metaschema-schema`: Core metadata management - `@pgpm/verify`: Verification utilities ## Testing diff --git a/packages/metaschema-schema/README.md b/packages/metaschema-schema/README.md index 854a5a63..f3dc7579 100644 --- a/packages/metaschema-schema/README.md +++ b/packages/metaschema-schema/README.md @@ -1,4 +1,4 @@ -# @pgpm/db-meta-schema +# @pgpm/metaschema-schema Database metadata utilities and introspection functions. ## Overview -`@pgpm/db-meta-schema` provides a comprehensive metadata management system for PostgreSQL databases. This package creates tables and schemas for storing and querying database structure information including databases, schemas, tables, fields, constraints, indexes, and more. It enables runtime schema introspection, metadata-driven code generation, and database structure management. +`@pgpm/metaschema-schema` provides a comprehensive metadata management system for PostgreSQL databases. This package creates tables and schemas for storing and querying database structure information including databases, schemas, tables, fields, constraints, indexes, and more. It enables runtime schema introspection, metadata-driven code generation, and database structure management. ## Features @@ -34,7 +34,7 @@ Database metadata utilities and introspection functions. If you have `pgpm` installed: ```bash -pgpm install @pgpm/db-meta-schema +pgpm install @pgpm/metaschema-schema pgpm deploy ``` @@ -57,7 +57,7 @@ eval "$(pgpm env)" ```bash # 1. Install the package -pgpm install @pgpm/db-meta-schema +pgpm install @pgpm/metaschema-schema # 2. Deploy locally pgpm deploy @@ -75,7 +75,7 @@ pgpm init # 3. Install a package cd packages/my-module -pgpm install @pgpm/db-meta-schema +pgpm install @pgpm/metaschema-schema # 4. Deploy everything pgpm deploy --createdb --database mydb1