Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/inflection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
14 changes: 7 additions & 7 deletions packages/metaschema-modules/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @pgpm/db-meta-modules
# @pgpm/metaschema-modules

<p align="center" width="100%">
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
Expand All @@ -9,14 +9,14 @@
<img height="20" src="https://github.com/constructive-io/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
</a>
<a href="https://github.com/constructive-io/pgpm-modules/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
<a href="https://www.npmjs.com/package/@pgpm/db-meta-modules"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fdb-meta-modules%2Fpackage.json"/></a>
<a href="https://www.npmjs.com/package/@pgpm/metaschema-modules"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fmetaschema-modules%2Fpackage.json"/></a>
</p>

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

Expand All @@ -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
```

Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions packages/metaschema-schema/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @pgpm/db-meta-schema
# @pgpm/metaschema-schema

<p align="center" width="100%">
<img height="250" src="https://raw.githubusercontent.com/constructive-io/constructive/refs/heads/main/assets/outline-logo.svg" />
Expand All @@ -9,14 +9,14 @@
<img height="20" src="https://github.com/constructive-io/pgpm-modules/actions/workflows/ci.yml/badge.svg" />
</a>
<a href="https://github.com/constructive-io/pgpm-modules/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
<a href="https://www.npmjs.com/package/@pgpm/db-meta-schema"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fdb-meta-schema%2Fpackage.json"/></a>
<a href="https://www.npmjs.com/package/@pgpm/metaschema-schema"><img height="20" src="https://img.shields.io/github/package-json/v/constructive-io/pgpm-modules?filename=packages%2Fmetaschema-schema%2Fpackage.json"/></a>
</p>

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

Expand All @@ -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
```

Expand All @@ -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
Expand All @@ -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
Expand Down
Loading