Hacker News new | ask | show | jobs
Show HN: I made a CLI tool to generate Rust SQLX models/queries from migrations (github.com)
2 points by jayy-lmao 843 days ago
Still very much a work in progress. But with Testcontainers I've been able to do what I always dreamed of doing with pg-embed in supporting model generation from SQL migrations.

- Generate Rust structs and sqlx queries for PostgreSQL database tables or from migrations via a Postgres test container

- Queries for a Model Set easily extendable with regular sqlx.

- Generate SQL migrations based on changes in the structs vs a database or migration via a Postgres test container

Let me know what you all think!