aboutsummaryrefslogtreecommitdiff
path: root/migration/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'migration/src/main.rs')
-rw-r--r--migration/src/main.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/migration/src/main.rs b/migration/src/main.rs
new file mode 100644
index 0000000..56190ac
--- /dev/null
+++ b/migration/src/main.rs
@@ -0,0 +1,6 @@
1use sea_orm_migration::prelude::*;
2
3#[tokio::main(flavor = "current_thread")]
4async fn main() {
5 cli::run_cli(migration::Migrator).await;
6}