Change-Id: I6bb9da09186f0380dc322c5527a97728c1f9fc37
This commit is contained in:
vguanyiwgd 2024-04-16 14:24:50 +08:00
parent c51be8f2cc
commit 01ed6b4b24
1 changed files with 1 additions and 1 deletions

View File

@ -1178,7 +1178,7 @@ class User_model extends CI_Model
// 清空指定applet_openid
public function clearAppletOpenid($openid){
$this->db->where('applet_openid', $openid);
$data = array('applet_openid' => '');
$data = array('applet_openid' => null);
return $this->db->update('tb_user', $data);
}
}