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