From 5dccf47f6e98a2b8ba881cf5c2ff516ae317a064 Mon Sep 17 00:00:00 2001 From: rustagir Date: Wed, 2 Jul 2025 15:47:07 -0400 Subject: [PATCH] DOCSP-51402: schema-flexible terminology --- docs/feature-compatibility.txt | 2 +- docs/fundamentals/database-collection.txt | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/feature-compatibility.txt b/docs/feature-compatibility.txt index 57c8c7486..b4a449712 100644 --- a/docs/feature-compatibility.txt +++ b/docs/feature-compatibility.txt @@ -175,7 +175,7 @@ Migration Features ------------------ The {+odm-short+} supports all Laravel migration features, but the -implementation is specific to MongoDB's schemaless model. +implementation is specific to MongoDB's schema-flexible model. Seeding Features ---------------- diff --git a/docs/fundamentals/database-collection.txt b/docs/fundamentals/database-collection.txt index 826e43220..8290e2766 100644 --- a/docs/fundamentals/database-collection.txt +++ b/docs/fundamentals/database-collection.txt @@ -207,8 +207,8 @@ methods in your application: .. note:: - MongoDB is a schemaless database, so the preceding schema builder methods - query the database data rather than the schema. + MongoDB is a schema-flexible database, so the preceding schema + builder methods query the database data rather than the schema. Example ``````` @@ -265,9 +265,10 @@ collection fields: .. note:: - MongoDB is a schemaless database, so the preceding methods query the collection - data rather than the database schema. If the specified collection doesn't exist - or is empty, these methods return a value of ``false``. + MongoDB is a schema-flexible database, so the preceding methods query + the collection data rather than the database schema. If the specified + collection doesn't exist or is empty, these methods return a value of + ``false``. Example ```````