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;

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

    /// 
    /// Installation
    /// 
    Installation,

    /// 
    /// Update
    /// 
    Update
}