npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@prisma-next/sql-schema-ir

v0.4.1

Published

SQL Schema IR types for schema introspection and verification

Downloads

10,471

Readme

@prisma-next/sql-schema-ir

SQL Schema Intermediate Representation (IR) types for Prisma Next.

Overview

This package defines the core types for the SQL Schema IR, a target-agnostic representation of SQL database schemas. This IR is used for schema verification, migration planning, and other tooling operations within the SQL family.

Purpose

  • Provide a canonical in-memory representation of SQL schemas that is independent of specific database implementations
  • Decouple schema introspection from verification logic - adapters produce SqlSchemaIR, verification logic consumes it
  • Enable extensible metadata via annotations for targets and extension packs
  • Support future migration planning by providing a structured representation of schema differences

Responsibilities

  • Type Definitions: Provides core types for SQL Schema IR (SqlSchemaIR, SqlTableIR, SqlColumnIR, etc.)
  • Shared Plane Package: Located in the shared plane, making it accessible to both migration-plane and runtime-plane packages
  • Extensibility: Supports annotations for targets and extension packs to attach metadata without modifying core IR structure
  • Type Safety: Provides TypeScript types for schema representation with proper nullability and constraint modeling

Dependencies

  • @prisma-next/contract: For Contract type (used in SqlSchemaIR)

Dependents:

  • Migration Plane:
    • @prisma-next/family-sql - SQL family instance uses SqlSchemaIR for schema verification
    • @prisma-next/framework-components - Core verification logic (via ./control)
    • @prisma-next/adapter-postgres - Postgres introspection
    • @prisma-next/extension-pgvector - Extension verification hooks
  • Runtime Plane (future):
    • Migration planning logic
    • Schema diff utilities

Types

Core Types

  • SqlSchemaIR - Complete database schema representation with tables, extensions, and annotations
  • SqlTableIR - Table representation with columns, constraints, indexes, and annotations
  • SqlColumnIR - Column representation with nativeType (DB-specific type), nullability, and annotations
  • SqlForeignKeyIR - Foreign key constraint representation
  • SqlUniqueIR - Unique constraint representation
  • SqlIndexIR - Index representation
  • SqlAnnotations - Namespaced extensibility metadata (e.g., { pg: { version: '15' } })

Key Design Decisions

  1. Native type primary: Columns capture the database-native type (nativeType, e.g., 'integer', 'vector'). Codec IDs now live exclusively in the contract—schema IR focuses solely on what exists in the database. This keeps schema verification centered on actual storage, while contract metadata handles codec-level concerns.

  2. Annotations: All IR types support optional annotations for extensibility. This allows targets and extensions to attach metadata without modifying the core IR structure.

  3. Shared Plane: This package is in the shared plane, meaning it can be safely imported by both migration-plane (verification, migration planning) and runtime-plane code.

Usage

Basic Usage

import type { SqlSchemaIR, SqlTableIR, SqlColumnIR } from '@prisma-next/sql-schema-ir/types';

const schemaIR: SqlSchemaIR = {
  tables: {
    user: {
      name: 'user',
      columns: {
        id: {
          name: 'id',
          nativeType: 'integer',
          nullable: false,
        },
        email: {
          name: 'email',
          nativeType: 'text',
          nullable: false,
        },
      },
      primaryKey: { columns: ['id'] },
      foreignKeys: [],
      uniques: [{ columns: ['email'] }],
      indexes: [],
    },
  },
  extensions: ['vector'],
  annotations: {
    pg: {
      version: '15',
    },
  },
};

Schema Introspection

Adapters produce SqlSchemaIR by querying database catalogs:

// In Postgres adapter
import postgresAdapter from '@prisma-next/adapter-postgres/control';
import type { SqlSchemaIR } from '@prisma-next/sql-schema-ir/types';

const controlAdapter = postgresAdapter.createControlInstance();
const schemaIR: SqlSchemaIR = await controlAdapter.introspect(driver, contract);

Schema Verification

Schema verification is performed via the schemaVerify() method on the SQL family instance:

// In SQL family instance
import sql from '@prisma-next/family-sql/control';
import type { SqlSchemaIR } from '@prisma-next/sql-schema-ir/types';

// Create family instance
const familyInstance = sql.create({
  target: postgresTargetDescriptor,
  adapter: postgresAdapterDescriptor,
  driver: postgresDriverDescriptor,
  extensions: [],
});

// Schema verification is performed via family instance method
const result = await familyInstance.schemaVerify({
  driver,
  contractIR,
  strict: false,
  contractPath: './contract.json',
});
// schemaVerify internally calls adapter.introspect() to get schemaIR

Architecture

Package Location

  • Domain: sql
  • Layer: core
  • Plane: shared

This package sits at the core layer in the shared plane, making it accessible to both migration-plane (authoring, tooling, targets) and runtime-plane (lanes, runtime, adapters) packages.

Related Documentation

  • docs/briefs/11-schema-ir.md - Schema IR project brief
  • docs/briefs/SQL Schema IR and Verification.md - Detailed design document
  • packages/2-sql/3-tooling/family/src/core/instance.ts - SQL family instance with schemaVerify() method
  • packages/3-targets/6-adapters/postgres/src/exports/control.ts - Postgres introspection entrypoint