public Schema(DbMigratorBase dbMigratorBase, string name)
 {
     this.DbMigratorBase = dbMigratorBase;
     this.Name           = name;
 }
 public static ISchema Schema(this DbMigratorBase dbMigratorBase, string name)
 {
     return(new Schema(dbMigratorBase, name));
 }