ckb_migrate/
lib.rs

1//! CKB migrate.
2//!
3//! ckb migrate help to migrate CKB's data on schema change.
4
5// declare here for mute ./devtools/ci/check-cargotoml.sh error
6extern crate num_cpus;
7
8pub mod migrate;
9mod migrations;
10#[cfg(test)]
11mod tests;