macrame/schema/mod.rs
1// `ddl` stays public: it is the canonical home of twenty-two DDL constants,
2// not a second path to them. `schema::CREATE_TRIGGERS` would say less than
3// `schema::ddl::CREATE_TRIGGERS` does (D-208).
4pub mod ddl;
5pub(crate) mod migrations;
6pub(crate) mod seed;
7
8pub use migrations::{current_version, run as run_migrations, MigrationOutcome, SCHEMA_VERSION};
9pub use seed::seed_bootstrap;