rat_quickdb 0.5.2

强大的跨数据库ODM库,支持自动索引创建、统一接口和现代异步架构
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 表管理模块
//!
//! 提供表的自动创建、版本管理和模式定义功能

pub mod manager;
pub mod schema;
pub mod version;

pub use manager::TableManager;
pub use schema::{
    ColumnDefinition, ColumnType, ConstraintDefinition, ConstraintType, IndexDefinition, IndexType,
    TableSchema,
};
pub use version::{MigrationScript, SchemaVersion, VersionManager};