25 $this->
name = $info->name;
26 $this->tablename = $info->table;
27 $this->
default = $info->def;
28 $this->max_length = $info->max_length;
29 $this->nullable = !$info->not_null;
30 $this->is_pk = $info->primary_key;
31 $this->is_unique = $info->unique_key;
32 $this->is_multiple = $info->multiple_key;
33 $this->is_key = ( $this->is_pk || $this->is_unique || $this->is_multiple );
34 $this->
type = $info->type;
35 $this->binary = $info->binary ??
false;
36 $this->is_numeric = $info->numeric ??
false;
37 $this->is_blob = $info->blob ??
false;
38 $this->is_unsigned = $info->unsigned ??
false;
39 $this->is_zerofill = $info->zerofill ??
false;