Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MigrationProcessType.cs

namespace Nop.Data.Migrations;

/// <summary>
/// Represents the type of migration process
/// </summary>
public enum MigrationProcessType
{
    /// <summary>
    /// The type of migration process does not matter
    /// </summary>
    NoMatter,

    /// <summary>
    /// Installation
    /// </summary>
    Installation,

    /// <summary>
    /// Update
    /// </summary>
    Update
}