Enum MigrationResult
A migration result that signifies whether a Migration was successful, failed or was skipped.
public enum MigrationResult
- Extension Methods
Fields
Failure = 0
Signifies that the migration failed, causing the object to be marked as in invalid.
Skipped = 2
Signifies that the migration was successful, but didn't change the object (ie didn't apply any migration logic), causing no debug message to be logged.
Success = 1
Signifies that the migration was successful and actually changed the object, causing a debug message to be logged.