diff --git a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs
index 973928a82b2..b34c742eb53 100644
--- a/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs
+++ b/parachains/runtimes/collectives/collectives-polkadot/src/lib.rs
@@ -550,6 +550,9 @@ pub type UncheckedExtrinsic =
generic::UncheckedExtrinsic
;
/// Extrinsic type that has already been checked.
pub type CheckedExtrinsic = generic::CheckedExtrinsic;
+// All migrations executed on runtime upgrade as a nested tuple of types implementing
+// `OnRuntimeUpgrade`. Included migrations must be idempotent.
+type Migrations = ();
/// Executive: handles dispatch to the various modules.
pub type Executive = frame_executive::Executive<
@@ -561,13 +564,6 @@ pub type Executive = frame_executive::Executive<
Migrations,
>;
-// All migrations executed on runtime upgrade as a nested tuple of types implementing `OnRuntimeUpgrade`.
-// Included migrations must be idempotent.
-type Migrations = (
- pallet_alliance::migration::Migration,
- pallet_balances::migration::MigrateToTrackInactive,
-);
-
#[cfg(feature = "runtime-benchmarks")]
#[macro_use]
extern crate frame_benchmarking;