05e618f74c
* cargo generate migrations didnt work without this * anon rpc accounting * Revert "anon rpc accounting" This reverts commit f1b8cbcdeca0d5f9545da32f11dda6a90854f97a. * 0 for anon in mysql * only set approximate_balance_remaining on owned stats * only set self.approximate_balance_remaining when adding if some * todo complete
24 lines
693 B
TOML
24 lines
693 B
TOML
[package]
|
|
name = "migration"
|
|
version = "0.36.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "migration"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.29.1", features = ["full", "tracing"] }
|
|
chrono = "0.4.26"
|
|
sea-orm = { version = "0.11.3", features = ["with-chrono"]}
|
|
|
|
[dependencies.sea-orm-migration]
|
|
version = "0.11.3"
|
|
features = [
|
|
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
|
|
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
|
|
"runtime-tokio-rustls", # `ASYNC_RUNTIME` feature
|
|
"sqlx-mysql", # `DATABASE_DRIVER` feature
|
|
]
|