From 208e6fe47a0815dc4bab5954116518ee00c3c238 Mon Sep 17 00:00:00 2001 From: Dan Ribbens Date: Tue, 17 Nov 2020 08:51:05 -0500 Subject: [PATCH] timestamps default to true for collections --- src/schema/collection.schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/schema/collection.schema.json b/src/schema/collection.schema.json index f0f3881bab..684cc3a0f3 100644 --- a/src/schema/collection.schema.json +++ b/src/schema/collection.schema.json @@ -148,7 +148,8 @@ }, "timestamps": { "type": "boolean", - "description": "Adds createdAt and updatedAt fields for the collection" + "description": "Adds createdAt and updatedAt fields for the collection", + "default": true } } }