remodel-core 0.1.0

Database modeling engine: conceptual (ER) to logical (relational) transformation and SQL DDL generation. A Rust reimplementation of the core engine of brModelo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core data structures shared by the modeling layers.
//!
//! - [`cardinality`] — the four classical cardinalities used in ER modeling.
//! - [`types`] — generic SQL data types used by columns and attributes.
//! - [`conceptual`] — the Entity-Relationship (conceptual) model.
//! - [`logical`] — the relational (logical) model.

pub mod cardinality;
pub mod conceptual;
pub mod logical;
pub mod types;