C# 클래스 Rock.Plugin.Migration

Class for defining a plugin migration
상속: Rock.Data.IMigration
파일 보기 프로젝트 열기: SparkDevNetwork/Rock

공개 메소드들

메소드 설명
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

메소드 상세

Down() 공개 추상적인 메소드

The commands to undo a migration from a specific version
public abstract Down ( ) : void
리턴 void

Sql() 공개 메소드

Executes a sql statement
public Sql ( string sql ) : void
sql string The SQL.
리턴 void

Up() 공개 추상적인 메소드

The commands to run to migrate plugin to the specific version
public abstract Up ( ) : void
리턴 void