Skip to content

Commit ebbcbd3

Browse files
committed
IR feedback
1 parent 64d2ea0 commit ebbcbd3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/projects/configure-settings.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ inserted into a collection. You can choose one of the following options:
4545
- :guilabel:`Autogenerated ObjectId`
4646

4747
- Your ``_id`` field is populated with an autogenerated random
48-
`ObjectId <https://www.mongodb.com/docs/manual/reference/bson-types/#std-label-objectid>`__.
48+
:ref:`ObjectId <document-bson-type-object-id>`.
4949

5050
``Autogenered ObjectId`` is the default key handling strategy used
5151
when creating a new project.
@@ -56,6 +56,14 @@ inserted into a collection. You can choose one of the following options:
5656
For example, if your relational table row has a primary key of ``personId = 1``,
5757
after migration your MongoDB ``_id`` field is ``_id: ObjectId("62472f3d5849820a91d7b52f")``.
5858

59+
- :guilabel:`Single Inherited Primary Key`
60+
61+
- Your ``_id`` field is populated with the value of the primary key
62+
field. The name of your primary key field is not included in the ``_id``.
63+
64+
For example, if your relational table row has a primary key of ``personId=1``,
65+
after migration your MongoDB ``_id`` field is ``_id: 1``.
66+
5967
- :guilabel:`Wrapped Inherited Primary Key`
6068

6169
- Your ``_id`` field is populated with an object where the key is the
@@ -67,14 +75,6 @@ inserted into a collection. You can choose one of the following options:
6775
``_id: { personId: 1 }``.
6876

6977

70-
- :guilabel:`Single Inherited Primary Key`
71-
72-
- Your ``_id`` field is populated with the value of the primary key
73-
field. The name of your primary key field is not included in the ``_id``.
74-
75-
For example, if your relational table row has a primary key of ``personId=1``,
76-
after migration your MongoDB ``_id`` field is ``_id: 1``.
77-
7878
Key Handling Behavior
7979
`````````````````````
8080

0 commit comments

Comments
 (0)