Skip to content

Commit

Permalink
syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jarv committed Apr 29, 2014
1 parent 69e3717 commit 0f11d60
Showing 1 changed file with 30 additions and 39 deletions.
69 changes: 30 additions & 39 deletions util/vpc-tools/sanitize-db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,15 @@ SET FOREIGN_KEY_CHECKS=0;
*/

UPDATE wwc.auth_user
set email = concat('success+',cast(id AS CHAR),'@simulator.amazonses.com')
where email not like ('%@edx.org'),
set username = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set first_name = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set last_name = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set password = null
where email not like ('%@edx.org'),
set last_login = null
where email not like ('%@edx.org'),
set date_joined = null
where email not like ('%@edx.org');
set
email = concat('success+',cast(id AS CHAR),'@simulator.amazonses.com'),
username = concat('user-',cast(id AS CHAR)),
first_name = concat('user-',cast(id AS CHAR)),
last_name = concat('user-',cast(id AS CHAR)),
password = null,
last_login = null,
date_joined = null
where email not like ('%@edx.org');

/*
There are a handful of email changes requests captured in flight.
Expand All @@ -43,37 +38,33 @@ UPDATE wwc.student_courseenrollmentallowed
*/

UPDATE wwc.auth_userprofile
set name = concat('user-',cast(id as CHAR)),
set language = "",
set location = "",
set meta = "",
set gender = null,
set mailing_address = null,
set year_of_birth = null,
set level_of_education = null,
set goals = null
set country = "",
set city = null;
set
name = concat('user-',cast(id as CHAR)),
language = "",
location = "",
meta = "",
gender = null,
mailing_address = null,
year_of_birth = null,
level_of_education = null,
goals = null,
country = "",
city = null;

/*
Grader has its own django core tables.
*/

UPDATE prod_grader.auth_user
set email = concat('success+',cast(id AS CHAR),'@simulator.amazonses.com')
where email not like ('%@edx.org'),
set username = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set first_name = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set last_name = concat('user-',cast(id AS CHAR))
where email not like ('%@edx.org'),
set password = null
where email not like ('%@edx.org'),
set last_login = null
where email not like ('%@edx.org'),
set date_joined = null
where email not like ('%@edx.org');
set
email = concat('success+',cast(id AS CHAR),'@simulator.amazonses.com'),
username = concat('user-',cast(id AS CHAR)),
first_name = concat('user-',cast(id AS CHAR)),
last_name = concat('user-',cast(id AS CHAR)),
password = null,
last_login = null,
date_joined = null
where email not like ('%@edx.org');


SET FOREIGN_KEY_CHECKS=1;

0 comments on commit 0f11d60

Please sign in to comment.