diff --git a/polkadot/runtime/common/src/crowdloan/migration.rs b/polkadot/runtime/common/src/crowdloan/migration.rs
index dec19a1ff5..1d29b4a682 100644
--- a/polkadot/runtime/common/src/crowdloan/migration.rs
+++ b/polkadot/runtime/common/src/crowdloan/migration.rs
@@ -15,12 +15,23 @@
// along with Polkadot. If not, see .
use super::*;
-use frame_support::{generate_storage_alias, Twox64Concat};
+use frame_support::{storage_alias, Twox64Concat};
/// Migrations for using fund index to create fund accounts instead of para ID.
pub mod crowdloan_index_migration {
use super::*;
+ #[storage_alias]
+ type NextTrieIndex = StorageValue, FundIndex>;
+
+ #[storage_alias]
+ type Leases = StorageMap<
+ Slots,
+ Twox64Concat,
+ ParaId,
+ Vec