db-migrate 0.1.1

Robust database migration tool for ScyllaDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod create;
mod up;
mod down;
mod status;
mod verify;
mod reset;

pub use create::CreateCommand;
pub use up::UpCommand;
pub use down::DownCommand;
pub use status::StatusCommand;
pub use verify::VerifyCommand;
pub use reset::ResetCommand;