safe-migrate 0.8.0

Check PostgreSQL migrations against a synchronized database baseline
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod api;

#[doc(hidden)]
pub mod _internal {
    pub mod analysis;
    pub mod ast;
    pub mod db;
    pub mod engine;
    pub mod model;
    pub mod report;
    pub mod rules;
    pub mod sync;

    #[cfg(test)]
    pub mod sync_tests;
    #[cfg(test)]
    pub(crate) mod test_support;
}