File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Summary
9898
9999.. list-table ::
100100 :header-rows: 1
101- :widths: 20 30 25 25
101+ :widths: 18 28 15 22 17
102102
103103 * - Category
104104 - What it is
@@ -291,12 +291,14 @@ dependency on any particular database or deployment.
291291**When to use: ** Use UUIDs when an object needs an identity that is stable and globally
292292unique across every Open edX instance, allowing the objects to be shared outside and
293293across instances without risk of collision. For example:
294+
294295* Learner certificates awarded on different Open edX instances should have distinct
295296 UUIDs, even if their instance-local identifiers (course run key, user primary
296297 key) are identical.
297- * Changelog entries should have distinct UUIDs, even the changes are identical.
298+ * Changelog entries should have distinct UUIDs, even if the changes are identical.
298299
299300**How to name: **
301+
300302* Python variables and attributes holding a parsed ``uuid.UUID `` object → ``_uuid `` suffix.
301303* Django Model Fields and Serializer Fields that convert between UUID objects and strings →
302304 ``_uuid `` suffix.
You can’t perform that action at this time.
0 commit comments