10 $this->
name = $info[
'column_name'];
11 $this->tablename = $info[
'table_name'];
12 $this->
default = $info[
'data_default'];
13 $this->max_length = $info[
'data_length'];
14 $this->nullable = $info[
'not_null'];
15 $this->is_pk = isset( $info[
'prim'] ) && $info[
'prim'] == 1 ? 1 : 0;
16 $this->is_unique = isset( $info[
'uniq'] ) && $info[
'uniq'] == 1 ? 1 : 0;
17 $this->is_multiple = isset( $info[
'nonuniq'] ) && $info[
'nonuniq'] == 1 ? 1 : 0;
19 $this->
type = $info[
'data_type'];