drop old fk

This commit is contained in:
Bryan Stitt 2023-07-26 09:33:15 -07:00
parent b1f447c5c8
commit 4d8836538d
5 changed files with 8 additions and 6 deletions

6
Cargo.lock generated
View File

@ -1678,7 +1678,7 @@ dependencies = [
[[package]]
name = "entities"
version = "0.36.0"
version = "0.41.0"
dependencies = [
"ethers",
"sea-orm",
@ -3330,7 +3330,7 @@ dependencies = [
[[package]]
name = "migration"
version = "0.36.0"
version = "0.41.0"
dependencies = [
"chrono",
"sea-orm",
@ -6982,7 +6982,7 @@ dependencies = [
[[package]]
name = "web3_proxy"
version = "0.36.0"
version = "0.41.0"
dependencies = [
"anyhow",
"arc-swap",

View File

@ -1,6 +1,6 @@
[package]
name = "entities"
version = "0.36.0"
version = "0.41.0"
edition = "2021"
[lib]

View File

@ -1,6 +1,6 @@
[package]
name = "migration"
version = "0.36.0"
version = "0.41.0"
edition = "2021"
publish = false

View File

@ -40,6 +40,7 @@ mod m20230708_152131_referral_track_one_time_bonus_bonus;
mod m20230713_144446_stripe_default_date_created;
mod m20230713_210511_deposit_add_date_created;
mod m20230726_072845_default_premium_user_tier;
mod m20230726_162138_drop_rpc_accounting_v2_fk;
pub struct Migrator;
@ -87,6 +88,7 @@ impl MigratorTrait for Migrator {
Box::new(m20230713_144446_stripe_default_date_created::Migration),
Box::new(m20230713_210511_deposit_add_date_created::Migration),
Box::new(m20230726_072845_default_premium_user_tier::Migration),
Box::new(m20230726_162138_drop_rpc_accounting_v2_fk::Migration),
]
}
}

View File

@ -1,6 +1,6 @@
[package]
name = "web3_proxy"
version = "0.36.0"
version = "0.41.0"
edition = "2021"
default-run = "web3_proxy_cli"