C# Class Rock.Plugin.Migration

Class for defining a plugin migration
Inheritance: Rock.Data.IMigration
Afficher le fichier Open project: SparkDevNetwork/Rock

Méthodes publiques

Méthode Description
Down ( ) : void

The commands to undo a migration from a specific version

Sql ( string sql ) : void

Executes a sql statement

Up ( ) : void

The commands to run to migrate plugin to the specific version

Method Details

Down() public abstract méthode

The commands to undo a migration from a specific version
public abstract Down ( ) : void
Résultat void

Sql() public méthode

Executes a sql statement
public Sql ( string sql ) : void
sql string The SQL.
Résultat void

Up() public abstract méthode

The commands to run to migrate plugin to the specific version
public abstract Up ( ) : void
Résultat void