Files
elo/migration/src/main.rs
Matthew Kaminski 5cb67786bf
Some checks are pending
Build Crate / build (push) Waiting to run
Add initial database schema and references
Also look into users a bit
2024-08-14 01:20:48 -04:00

7 lines
120 B
Rust

use sea_orm_migration::prelude::*;
#[async_std::main]
async fn main() {
cli::run_cli(migration::Migrator).await;
}