Models a migration script.
Default constructor
public Void Script()
Initializes a new instance of Script from source.
public Void Script(source)
Name | Type | Summary |
---|---|---|
source | Script | A Script to copy. |
The name of the connection where the script must be executed.
public String Connection { get; set; }
A collection of dependencies fr this script.
public Collection<Dependency> Dependencies { get; set; }
Documentation of th script.
public String Documentation { get; set; }
A hash for the entire script.
public String Hash { get; set; }
Script Id.
public String Id { get; set; }
Stage where the script must be executed.
public Stage Stage { get; set; }
A collection of statements to be executed.
public Collection<Statement> Statements { get; set; }
In this document