Describes the status of one migration relative to another.

Namespace:  Mindscape.NHibernateModelDesigner.Migrations
Assembly:  Mindscape.NHibernateModelDesigner.Migrations (in Mindscape.NHibernateModelDesigner.Migrations.dll)
Version: 3.1.0.0 (3.1.0.0)

Syntax

C#
public enum MigrationStatus
Visual Basic (Declaration)
Public Enumeration MigrationStatus

Members

Member nameDescription
Up
The migration is of a higher version, and can be reached by running upward migrations.
IrreversibleUp
The migration is of a higher version, and can be reached by running upward migrations, but the process is not reversible.
ReachableDown
The migration is of a lower version, and can be reached by running downward migrations.
IrreversibleDown
The migration is of a lower version, and can be reached by running downward migrations, but the process is not reversible.
UnreachableDown
The migration is of a lower version, but cannot be reached by running downward migrations because one of the intervening upward migrations was irreversible.

See Also