ckb_migrate/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
//! CKB migrate.
//!
//! ckb migrate help to migrate CKB's data on schema change.

// declare here for mute ./devtools/ci/check-cargotoml.sh error
extern crate num_cpus;

pub mod migrate;
mod migrations;
#[cfg(test)]
mod tests;