Expand description
This crate provides utilities for working with SQL databases.
Macros§
- define_
text_ enum - A helper macro to define a text-based enum that can be stored in a SQLite database.
The enum must implement
Into<&'static str>andFromStr. - migrator
- A helper macro to define a
migratefunction that runs database migrations from a specified directory.
Structs§
- Text
Wrapper - Wrapper type for implementing sqlx Encode and Decode for types by converting them to and from text.