这个错误意味着什么?一般来说你会如何解决这个问题?
mysql exception 1364(HY000):字段'rawPassword'没有默认值 这是我的错误开始的源代码
if self.auto_new_account:
self.cur.execute(self.add_account, (username, self.get_hashed_password(password) , 0, 0 ))
self.cnx.commit()
response = {
'success': True,
'userId': username,
'accountId': 0,
'adminAccess': max(0, minAdminAccess)
}
callback(response)
return response