Try your search with a different keyword or use * as a wildcard.
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
}