From dc33fa8416ce6b447494c6efdf46518da37ac1cc Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Tue, 26 Aug 2025 21:13:53 +0900 Subject: Add database migration and entities --- migration/src/main.rs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 migration/src/main.rs (limited to 'migration/src/main.rs') 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 @@ +use sea_orm_migration::prelude::*; + +#[tokio::main(flavor = "current_thread")] +async fn main() { + cli::run_cli(migration::Migrator).await; +} -- cgit v1.2.3