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