Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOCSP-51402: schema-flexible terminology (#3424)
  • Loading branch information
rustagir authored and paulinevos committed Jul 3, 2025
commit 98b75683f0c68a0294f9b63e2a8bcc5b2a5a4d93
11 changes: 6 additions & 5 deletions docs/database-collection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,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
```````
Expand Down Expand Up @@ -269,9 +269,10 @@ collection fields:
- ``Schema::hasColumns(string $<collection>, string[] $<field names>)``:
checks if each specified field exists in at least one document

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``.

.. note:: id Alias

Expand Down
2 changes: 1 addition & 1 deletion docs/feature-compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,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
----------------
Expand Down
Loading