Exemplo n.º 1
0
 public TableAction(SchemaAction database, string name)
 {
     Name = name;
     Database = database;
     Actions = new List<IAction>();
 }
Exemplo n.º 2
0
 public abstract void Up(SchemaAction schema);
Exemplo n.º 3
0
 public virtual void ExecuteSchema(SchemaAction action)
 {
     action.Execute(Database);
 }
Exemplo n.º 4
0
 public abstract void Down(SchemaAction schema);
Exemplo n.º 5
0
 public override void Up(SchemaAction schema)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 6
0
 public TableAddAction(SchemaAction database, string name)
     : base(database, name)
 {
 }