//! Schema generation module
//!
//! This module writes SQL schema output from TideORM model definitions.
//!
//! It is mainly for exporting or inspecting schema SQL, not for applying live
//! migrations. If generated SQL looks wrong, check the model metadata and index
//! declarations first.
//!
//! You can wire schema generation through `TideConfig::schema_file(...)` or use
//! `SchemaWriter::write_schema(...)` directly.
use RwLock;
use crateDatabaseType;
use crateIndexDefinition;
pub use SchemaGenerator;
pub use ;
pub use SchemaWriter;
pub static SCHEMA_REGISTRY: = new;