Class Constants.Conventions.Migrations
Contains constants related to database migrations.
Inheritance
object
Namespace: Umbraco.Cms.Core
Assembly: Umbraco.Core.dll
Syntax
public static class Constants.Conventions.Migrations
Fields
View SourceKeyValuePrefix
The prefix used for key-value storage of upgrade state.
Declaration
public const string KeyValuePrefix = "Umbraco.Core.Upgrader.State+"
Field Value
| Type | Description |
|---|---|
| string |
UmbracoUpgradePlanKey
The key used to store the Umbraco upgrade plan state.
Declaration
public const string UmbracoUpgradePlanKey = "Umbraco.Core.Upgrader.State+Umbraco.Core"
Field Value
| Type | Description |
|---|---|
| string |
UmbracoUpgradePlanName
The name of the Umbraco core upgrade plan.
Declaration
public const string UmbracoUpgradePlanName = "Umbraco.Core"
Field Value
| Type | Description |
|---|---|
| string |
UmbracoUpgradePlanPremigrationsKey
The key used to store the Umbraco pre-migrations upgrade plan state.
Declaration
public const string UmbracoUpgradePlanPremigrationsKey = "Umbraco.Core.Upgrader.State+Umbraco.Core.Premigrations"
Field Value
| Type | Description |
|---|---|
| string |
UmbracoUpgradePlanPremigrationsName
The name of the Umbraco core pre-migrations upgrade plan.
Declaration
public const string UmbracoUpgradePlanPremigrationsName = "Umbraco.Core.Premigrations"
Field Value
| Type | Description |
|---|---|
| string |
UpgradeLockKey
The key used to coordinate migration leadership across servers in a load-balanced
environment. The value is either empty (no active leader) or
"{machineIdentifier}|{claimedAtUtc:O}" when a server holds the claim,
where machineIdentifier is the value returned by GetMachineIdentifier().
Declaration
public const string UpgradeLockKey = "Umbraco.Core.Upgrader.Lock"
Field Value
| Type | Description |
|---|---|
| string |