You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: update READMEs to use actual package.json names
- metaschema-modules: replace @pgpm/db-meta-modules with @pgpm/metaschema-modules
- metaschema-schema: replace @pgpm/db-meta-schema with @pgpm/metaschema-schema
- inflection: update cross-reference from @pgpm/db-meta-schema to @pgpm/metaschema-schema
- Fix npm badge URLs to point to correct package directory paths
`@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.
19
+
`@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.
20
20
21
21
## Features
22
22
@@ -33,7 +33,7 @@ Module metadata handling and dependency tracking.
33
33
If you have `pgpm` installed:
34
34
35
35
```bash
36
-
pgpm install @pgpm/db-meta-modules
36
+
pgpm install @pgpm/metaschema-modules
37
37
pgpm deploy
38
38
```
39
39
@@ -56,7 +56,7 @@ eval "$(pgpm env)"
56
56
57
57
```bash
58
58
# 1. Install the package
59
-
pgpm install @pgpm/db-meta-modules
59
+
pgpm install @pgpm/metaschema-modules
60
60
61
61
# 2. Deploy locally
62
62
pgpm deploy
@@ -74,7 +74,7 @@ pgpm init
74
74
75
75
# 3. Install a package
76
76
cd packages/my-module
77
-
pgpm install @pgpm/db-meta-modules
77
+
pgpm install @pgpm/metaschema-modules
78
78
79
79
# 4. Deploy everything
80
80
pgpm deploy --createdb --database mydb1
@@ -213,7 +213,7 @@ Use module tables as feature flags:
Database metadata utilities and introspection functions.
16
16
17
17
## Overview
18
18
19
-
`@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.
19
+
`@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.
20
20
21
21
## Features
22
22
@@ -34,7 +34,7 @@ Database metadata utilities and introspection functions.
0 commit comments