我在前面手动添加了数据库中的列,显示没有列的错误属性“tablename.name”未定义。
答案 0 :(得分:0)
嗨,当您手动创建error
并且未在相关column
中添加column
时,会出现model
。
请在column
中添加model
。此外,如果您的define
column
中的rules
safe
作为in your Model
@property string $your_column_name // at this at top with other column names string/integer whatever your datatype is
public function rules() {
// rest of your rules
array('your_column_name', 'safe');
}
xml