Commit b307995c by vkaracic

Added a dummy date in the date_joined

It was causing 500 internal server errors because after
sanitization it would be set to null but a valid value would be
needed for a couple of actions on the website, like assigning
students to programs and assigning students to courses.
parent 0539c68a
......@@ -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 = "2010-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