@@ -42,6 +42,8 @@ class ModulestoreSource(models.Model):
4242 * When using the REST API directly, the default is to use the same behavior as the UI, but
4343 clients can also explicitly specify the `forward_source_to_target` boolean param in order to
4444 control whether `forwarded` is set to any given migration.
45+
46+ .. no_pii:
4547 """
4648 key = LearningContextKeyField (
4749 unique = True ,
@@ -74,6 +76,8 @@ class ModulestoreMigration(models.Model):
7476 contains the progress of the import.
7577 * A single ModulestoreSource may very well have multiple ModulestoreMigrations; however,
7678 at most one of them with be the "authoritative" migration, as indicated by `forwarded`.
79+
80+ .. no_pii:
7781 """
7882
7983 ## MIGRATION SPECIFICATION
@@ -179,6 +183,8 @@ class ModulestoreBlockSource(TimeStampedModel):
179183
180184 The semantics of `forwarded` directly mirror those of `ModulestoreSource.forwarded`. Please see
181185 that class's docstring for details.
186+
187+ .. no_pii:
182188 """
183189 overall_source = models .ForeignKey (
184190 ModulestoreSource ,
@@ -216,6 +222,8 @@ class ModulestoreBlockMigration(TimeStampedModel):
216222 * A single ModulestoreBlockSource may very well have multiple ModulestoreBlockMigrations; however,
217223 at most one of them with be the "authoritative" migration, as indicated by `forwarded`.
218224 This will coincide with the `overall_migration` being pointed to by `forwarded` as well.
225+
226+ .. no_pii:
219227 """
220228 overall_migration = models .ForeignKey (
221229 ModulestoreMigration ,
0 commit comments