Skip to content

DOCSP-51402: schema-flexible terminology #3421

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion docs/feature-compatibility.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------------
Expand Down
11 changes: 6 additions & 5 deletions docs/fundamentals/database-collection.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
```````
Expand Down Expand Up @@ -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
```````
Expand Down
Loading