C# Class Migr8.MigrationAttribute

Inheritance: System.Attribute
Afficher le fichier Open project: rebus-org/migr8

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
MigrationAttribute ( int sequenceNumber, string description = null, string optionalBranchSpecification = null ) : System

Constructs the migration attribute with the given parameters

Method Details

MigrationAttribute() public méthode

Constructs the migration attribute with the given parameters
public MigrationAttribute ( int sequenceNumber, string description = null, string optionalBranchSpecification = null ) : System
sequenceNumber int Specifies the sequence in which the migration is to be executed. This will function as a global ordering of all the migrations, deterministically ensuring that migrations with higher numbers are always executed later.
description string Optionally supplies the migration with a description which will be added to the migration log.
optionalBranchSpecification string Optionally supplies the migration with a branch specification, which allows for multiple migrations to be positioned at the same point in the global sequence.
Résultat System