Rust library that provides derive macros for automatic CRUD operations and comprehensive audit trails for MySQL entities. Track who changed what, when, and why with actor, session, and change set metadata.
Go to file
Michael Netshipise b9de877ba1 v0.3.8: strip select-field type aliases in derive; new_uuid -> Uuid::now_v7
- sqlx-record-derive: select_fields() may emit annotated forms like
  `id as "id: Uuid"` for custom-typed columns; strip the alias before
  building the order_by / select-field validation sets so callers can pass
  bare column names (fixes field-filtering for entities with custom types).
- new_uuid(): use Uuid::now_v7() instead of hand-rolled timestamp+random.

Tagged for downstream git consumption (st-peter pins this).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-05 11:08:52 +02:00
.claude Sync all local changes 2026-03-19 12:41:32 +02:00
mcp Sync all local changes 2026-03-19 12:41:32 +02:00
scripts Import entity-changes project 2026-01-28 15:19:38 +02:00
sqlx-record-ctl Sync all local changes 2026-03-19 12:41:32 +02:00
sqlx-record-derive v0.3.8: strip select-field type aliases in derive; new_uuid -> Uuid::now_v7 2026-06-05 11:08:52 +02:00
src v0.3.8: strip select-field type aliases in derive; new_uuid -> Uuid::now_v7 2026-06-05 11:08:52 +02:00
.gitignore Update docs, MCP server, and skills for v0.3.0 features 2026-01-28 16:44:57 +02:00
CLAUDE.md consolidated skills 2026-02-06 06:09:44 +02:00
Cargo.toml v0.3.8: strip select-field type aliases in derive; new_uuid -> Uuid::now_v7 2026-06-05 11:08:52 +02:00
Makefile Import entity-changes project 2026-01-28 15:19:38 +02:00
README.md Rename to sqlx-record with multi-database support 2026-01-28 15:31:24 +02:00

README.md

sqlx-record

Entity CRUD and change tracking for SQL databases with SQLx.

A Rust library that provides derive macros for automatic CRUD operations and comprehensive audit trails for SQL entities. Track who changed what, when, and why with actor, session, and change set metadata.

Features

  • #[derive(Entity)] generates complete CRUD operations
  • Type-safe query building with composable filters
  • Change tracking with WHO, WHAT, WHEN, and WHERE metadata
  • Version fields for optimistic locking
  • Diff detection between model states
  • CLI tool for managing audit tables
  • Supports MySQL, PostgreSQL, and SQLite

Installation

Add to your Cargo.toml:

[dependencies]
sqlx-record = { version = "0.1", features = ["mysql", "derive"] }
# or for PostgreSQL:
# sqlx-record = { version = "0.1", features = ["postgres", "derive"] }
# or for SQLite:
# sqlx-record = { version = "0.1", features = ["sqlite", "derive"] }

Usage

use sqlx_record::prelude::*;
use sqlx::FromRow;

#[derive(Entity, FromRow)]
#[table_name = "users"]
struct User {
    #[primary_key]
    id: Uuid,
    name: String,
    email: String,
    #[version]
    version: u32,
}

// Insert
let id = user.insert(&pool).await?;

// Query with filters
let users = User::find(&pool, filters![("active", true)], None).await?;

// Update with diff tracking
let mut form = User::update_form().with_name("New Name".into());
let diff = form.db_diff(&id, &pool).await?;
user.update(&pool, form).await?;

License

MIT