public SchemaTableTypeColumn(SchemaTableType table, string name, string dataType, int? maximumLength, int? precision, int? scale)
 {
     this.table = table;
     this.name = name;
     this.dataType = dataType;
     this.maximumLength = maximumLength;
     this.precision = precision;
     this.scale = scale;
 }
 public SchemaTableTypeColumn(SchemaTableType table, string name, string dataType, int?maximumLength, int?precision, int?scale)
 {
     this.Table         = table;
     this.Name          = name;
     this.DataType      = dataType;
     this.MaximumLength = maximumLength;
     this.Precision     = precision;
     this.scale         = scale;
 }