Skip to main content

claw_core/schema/
mod.rs

1//! Schema modules for claw-core.
2//!
3//! The `schema` module is responsible for embedded SQL migrations and schema
4//! validation helpers that guard the integrity of claw-core's internal tables.
5
6pub mod migrations;
7pub mod validators;