athena_rs 3.26.1

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Schema service contract row types.
//!
//! This module provides a stable contract facade while concrete contract
//! ownership is split by domain:
//! - `service_contracts_catalog` for relation/column/constraint records
//! - `service_contracts_migration` for migration records

pub use super::service_contracts_catalog::{
    SchemaColumnRecord, SchemaConstraintRecord, SchemaRelationRecord,
};
pub use super::service_contracts_migration::SchemaMigrationRecord;