caretta-sync-core 0.0.2

A local-first application framework for lazy person
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod m20220101_000001_create_table;

#[cfg(test)]
pub struct TestMigrator;

#[cfg(test)]
#[async_trait::async_trait]
impl sea_orm_migration::MigratorTrait for TestMigrator {
    fn migrations() -> Vec<Box<dyn sea_orm_migration::MigrationTrait>> {
        vec![Box::new(m20220101_000001_create_table::Migration)]
    }
}