diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 82b5bed95fd0..ffd0544ce351 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1527,6 +1527,7 @@ pub type Migrations = ( migrations::V0941, migrations::V0942, migrations::V0943, + migrations::V10000, migrations::Unreleased, ); @@ -1557,13 +1558,16 @@ pub mod migrations { ump_migrations::UpdateUmpLimits, ); - /// Unreleased migrations. Add new ones here: - pub type Unreleased = ( + pub type V10000 = ( init_state_migration::InitMigrate, pallet_society::migrations::MigrateToV2, pallet_im_online::migration::v1::Migration, ); + /// Unreleased migrations. Add new ones here: + pub type Unreleased = ( + ); + /// Migrations that set `StorageVersion`s we missed to set. pub struct SetStorageVersions; diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index f725e3b42e0a..2528714c3227 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1489,6 +1489,7 @@ pub type Migrations = ( migrations::V0941, migrations::V0942, migrations::V0943, + migrations::V10000, migrations::Unreleased, ); @@ -1524,8 +1525,12 @@ pub mod migrations { ump_migrations::UpdateUmpLimits, ); + pub type V10000 = ( + pallet_im_online::migration::v1::Migration, + ); + /// Unreleased migrations. Add new ones here: - pub type Unreleased = (pallet_im_online::migration::v1::Migration,); + pub type Unreleased = (); /// Migrations that set `StorageVersion`s we missed to set. pub struct SetStorageVersions; diff --git a/runtime/rococo/src/lib.rs b/runtime/rococo/src/lib.rs index 6e0eca72d468..aca4de74f276 100644 --- a/runtime/rococo/src/lib.rs +++ b/runtime/rococo/src/lib.rs @@ -1519,6 +1519,7 @@ pub type Migrations = ( migrations::V0941, migrations::V0942, migrations::V0943, + migrations::V10000, migrations::Unreleased, ); @@ -1623,11 +1624,14 @@ pub mod migrations { } } - /// Unreleased migrations. Add new ones here: - pub type Unreleased = ( + pub type V10000 = ( pallet_society::migrations::MigrateToV2, pallet_im_online::migration::v1::Migration, ); + + /// Unreleased migrations. Add new ones here: + pub type Unreleased = ( + ); } /// Helpers to configure all migrations. diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index ea17989b450d..6a920546676b 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1281,6 +1281,7 @@ pub type Migrations = ( migrations::V0941, migrations::V0942, migrations::V0943, + migrations::V10000, migrations::Unreleased, ); @@ -1325,8 +1326,12 @@ pub mod migrations { } } + pub type V10000 = ( + pallet_im_online::migration::v1::Migration, + ); + /// Unreleased migrations. Add new ones here: - pub type Unreleased = (pallet_im_online::migration::v1::Migration,); + pub type Unreleased = (); } /// Helpers to configure all migrations.