yii 添加数据时 有默认值 就赋值默认值
修改 /yiisoft/yii2/db/ColumnSchema.php
的128 行的 return null ;修改为下面
if(isset($this->defaultValue)){
return $this->defaultValue;
}else{
return null;
}
修改 /yiisoft/yii2/db/ColumnSchema.php
的128 行的 return null ;修改为下面
if(isset($this->defaultValue)){
return $this->defaultValue;
}else{
return null;
}