@@ -269,6 +269,7 @@ Supported options:
269
269
Documents] ( #indexing-documents ) for details.
270
270
* ` options.generateId ` : A function used to generate a new id for documents of
271
271
this type. Defaults to ``` () => `${schema.name}.${new ObjectId()}` ```
272
+ * ` options.versioning ` : Pass ` false ` to disable [ versioning] ( #document-versioning ) for instances of this schema.
272
273
273
274
After creating a schema, [ ` .methods ` ] ( #schemamethods ) ,
274
275
[ ` .statics ` ] ( #schemastatics ) , [ ` .virtuals ` ] ( #schemavirtuals ) , and
@@ -364,6 +365,11 @@ Special fields are defined by using fragments of schema by value.
364
365
* ` DynamoDM().TypeField ` : used to indicate the type field, which stores the
365
366
name of the model that a saved document was created with. The default type
366
367
field name is ` type ` .
368
+ * ` DynamoDM().VersionField ` : The version field, which stores a number that is
369
+ incremented by 1 each time a model is saved, and is used to prevent data
370
+ from being silently overwritten by multiple clients accessing the same document.
371
+ The default version field name is ` v ` . See [ document
372
+ versioning] ( #document-versioning ) for details.
367
373
* ` DynamoDM().CreatedAtField ` : used to indicate a timestamp field that is
368
374
updated when a model is first created by dynamodm. This field is not used
369
375
unless you include this schema fragment in a model's schema.
@@ -632,6 +638,18 @@ await aComment.save();
632
638
const stingified = JSON.stringify(await aComment.toObject());
633
639
` ` `
634
640
641
+ ### Document Versioning
642
+ The [version field](#built- in - schema- fragments) of a model is incremented each
643
+ time it is saved, starting at 0 for un- saved models . the ` .save()` and
644
+ ` .remove()` methods check that the version in the database is the same as the
645
+ current one using a [Condition
646
+ Expression](https: // docs.aws.amazon.com/amazondynamodb/latest/developerguide/Expressions.ConditionExpressions.html)
647
+ before updating or deleting the data (they fail with an error if the version
648
+ does not match).
649
+
650
+ Versioning can be disabled for a model by setting the [Schema' s
651
+ `options.versioning` property](#schema-options) to `false`.
652
+
635
653
## Getting Documents by ID
636
654
### static async Model.getById(id)
637
655
Get a document by its ID. By default models use `.id` as the ID field. It' s
0 commit comments