Commit b5d250ae2dd3e0d5a4fa022f52affbdabc408672

Authored by megan_w
1 parent d6876964

KTS-3256

"On the new search results page a number of our documents incorrectly state that the document is "Checked out by: Deleted User on"."
Fixed. The sql removes any incorrect references to the deleted user id of -10.

Committed by: Megan Watson
Reviewed by: Conrad Vermeulen



git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8379 c91229c3-7414-0410-bfa2-8a42b809f60b
sql/mysql/upgrade/3.5.3/doc_checked_out_user_id.sql 0 → 100644
  1 +update documents set checked_out_user_id=null
  2 +WHERE checked_out_user_id=-10 and is_checked_out=0;
0 3 \ No newline at end of file
... ...