diff options
| author | Tolmachev Igor <me@igorek.dev> | 2025-08-26 21:13:53 +0900 |
|---|---|---|
| committer | Tolmachev Igor <me@igorek.dev> | 2025-08-26 21:13:53 +0900 |
| commit | dc33fa8416ce6b447494c6efdf46518da37ac1cc (patch) | |
| tree | 6bf069f70c953f14b3a7e84ed4a7bbcde3de7012 /migration/Cargo.toml | |
| parent | 9cb5689c87978c4e05e87f631ebf92a626d583b0 (diff) | |
| download | queue_server-dc33fa8416ce6b447494c6efdf46518da37ac1cc.tar.gz queue_server-dc33fa8416ce6b447494c6efdf46518da37ac1cc.zip | |
Add database migration and entities
Diffstat (limited to 'migration/Cargo.toml')
| -rw-r--r-- | migration/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
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 @@ | |||
| 1 | [package] | ||
| 2 | name = "migration" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2024" | ||
| 5 | publish = false | ||
| 6 | |||
| 7 | [lib] | ||
| 8 | name = "migration" | ||
| 9 | path = "src/lib.rs" | ||
| 10 | |||
| 11 | [dependencies] | ||
| 12 | sea-orm-migration = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] } | ||
| 13 | tokio = { version = "1.47.1", features = ["macros", "rt"] } | ||
