FieldInfo.fromColumn constructor

FieldInfo.fromColumn(
  1. DbColumn col
)

Implementation

FieldInfo.fromColumn(DbColumn col) {
  this.name = col.name;
  this.type = col.fieldType;
}