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/Cargo.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 migration/Cargo.toml (limited to 'migration/Cargo.toml') diff --git a/migration/Cargo.toml b/migration/Cargo.toml new file mode 100644 index 0000000..bb33242 --- /dev/null +++ b/migration/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "migration" +version = "0.1.0" +edition = "2024" +publish = false + +[lib] +name = "migration" +path = "src/lib.rs" + +[dependencies] +sea-orm-migration = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] } +tokio = { version = "1.47.1", features = ["macros", "rt"] } -- cgit v1.2.3