toolu-orm-core 0.1.1

Schema definitions, migrations and driver traits for toolu-orm
Documentation
// Re-export backend crates so downstream dependents (e.g. orm-cli) can
// reference row types without declaring their own direct dependency.
#[cfg(feature = "libsql")]
pub use libsql;
#[cfg(feature = "rusqlite")]
pub use rusqlite;
#[cfg(feature = "postgres")]
pub use tokio_postgres;

pub mod column;
pub mod dialect;
pub mod diff;
pub mod error;
pub mod expr;
pub mod index;
pub mod journal;
pub mod ordering;
pub mod query_column;
pub mod relation;
pub mod relational_row;
pub mod rename;
pub mod row;
pub mod schema;
pub mod snapshot;
pub mod sql;
pub mod table;
pub mod value;