yii 添加数据时 有默认值 就赋值默认值

修改  /yiisoft/yii2/db/ColumnSchema.php

的128 行的 return null ;修改为下面

if(isset($this->defaultValue)){
return $this->defaultValue;
}else{
return null;
}

猜你喜欢

转载自www.cnblogs.com/shaoyang0123/p/9257040.html