diff --git a/docs/data/source/conf.py b/docs/data/source/conf.py index 90a78f48fd..b0a2deec1e 100644 --- a/docs/data/source/conf.py +++ b/docs/data/source/conf.py @@ -22,4 +22,10 @@ templates_path.append('source/_templates') # so a file named "default.css" will overwrite the builtin "default.css". html_static_path.append('source/_static') +project = u'edX Data Documentation' +copyright = u'2013, edX Documentation Team' +# The short X.Y version. +version = '' +# The full version, including alpha/beta/rc tags. +release = '' \ No newline at end of file diff --git a/docs/data/source/internal_data_formats/sql_schema.rst b/docs/data/source/internal_data_formats/sql_schema.rst index 6cfeec3179..b698ea415f 100644 --- a/docs/data/source/internal_data_formats/sql_schema.rst +++ b/docs/data/source/internal_data_formats/sql_schema.rst @@ -374,6 +374,29 @@ A row in this table represents a student's enrollment for a particular course ru String indicating what kind of enrollment this was. The default is "honor" (honor certificate) and all enrollments prior to 2013-08-20 will be of that type. Other types being considered are "audit" and "verified_id". +`user_id_map` +========================== +A row in this table maps a student's real user ID to an anonymous ID generated to obfuscate the student's identity. + +`id` +---- + Primary key. + +`user_id` +--------- + Student's ID in `auth_user.id` + +`anonymous_user_id` +----------- + The user ID generated to obfuscate the student's identity. + +`course_id` +----------- + The ID of the course run the student is enrolled in. + + + + ******************* Courseware Progress *******************