The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated with message: Since 2.0.14.1 and will be removed in 2.1.
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be
removed from the class and what other property to use instead.
Loading history...
42
1
return new JsonExpression($value, $this->type);
43
}
44
45
206
return $this->typecast($value);
46
}
47
48
/**
49
* {@inheritdoc}
50
*/
51
328
public function phpTypecast($value)
52
{
53
328
if ($value === null) {
54
326
return null;
55
}
56
57
176
if (!$this->disableJsonSupport && $this->type === Schema::TYPE_JSON) {
The property yii\db\mysql\ColumnSchema::$disableJsonSupport has been deprecated with message: Since 2.0.14.1 and will be removed in 2.1.
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be
removed from the class and what other property to use instead.
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be removed from the class and what other property to use instead.