Commit e4848f95 by Fred Smith

Merge pull request #2216 from edx/vkaracic/sanitize-add-join-date

Added a dummy date in the date_joined
parents 0539c68a aee401ee
......@@ -24,7 +24,7 @@ UPDATE auth_user
first_name = concat('user-',cast(id AS CHAR)),
last_name = concat('user-',cast(id AS CHAR)),
last_login = null,
date_joined = null
date_joined = "1970-01-01 00:00:00"
where email not like ('%@edx.org');
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment