sqlmodel-schema 0.5.0

Schema definition and migration support for SQLModel Rust
docs.rs failed to build sqlmodel-schema-0.5.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: sqlmodel-schema-0.4.0

sqlmodel-schema

Schema generation, DDL, and migrations for SQLModel Rust.

Role in the SQLModel Rust System

  • Derives expected schema from Model metadata.
  • Generates dialect-specific CREATE/ALTER SQL.
  • Provides diffing and migration runner utilities.

Usage

Most users should depend on sqlmodel and import from sqlmodel::prelude::*. Use this crate directly if you are extending internals or building tooling around the core APIs.

Links