Index: Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs =================================================================== diff -u -raf53f335d0fa6920f7a5c4ab27b112bae9eeaede -r22d820ab9e0333ce64e9ea74ac19867042906298 --- Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs (.../UpgradeScript.cs) (revision af53f335d0fa6920f7a5c4ab27b112bae9eeaede) +++ Migration/Scripts/src/Migration.Scripts.Data/UpgradeScript.cs (.../UpgradeScript.cs) (revision 22d820ab9e0333ce64e9ea74ac19867042906298) @@ -85,7 +85,7 @@ /// is null, /// is null. /// - /// Thrown when executing query failed. + /// Thrown when upgrading failed. public void Upgrade(IVersionedFile source, IVersionedFile target) { if (source == null) @@ -99,6 +99,13 @@ PerformUpgrade(source, target); } + /// + /// Performs the upgrade on . + /// + /// The source file to upgrade from. + /// The target file to upgrade to. + /// The and has been verified in . + /// Thrown when upgrading failed. protected abstract void PerformUpgrade(IVersionedFile source, IVersionedFile target); } } \ No newline at end of file