barrel 0.7.0

A powerful schema migration building API for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A unit testing module for barrel

// We can always trust these tests 👍
mod common;

#[cfg(feature = "mysql")]
mod mysql;

#[cfg(feature = "pg")]
mod pg;

#[cfg(feature = "sqlite3")]
mod sqlite3;

#[cfg(feature = "mssql")]
mod mssql;