migrio 1.1.0

A drop-in database migration library for PostgreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]
#![cfg_attr(not(doctest), doc = include_str!("../README.md"))]

mod errors;
mod migrate;
mod step;

pub use errors::MigrationError;
pub use migrate::Migration;

/// Alias for compatibility with `sqlx`
pub type Migrator = Migration;