rgb-lib-migration 0.2.0-alpha.3

RGB wallet library migrations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub use sea_orm_migration::prelude::*;

mod m20230608_071249_init_db;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![Box::new(m20230608_071249_init_db::Migration)]
    }
}