From a2b7773794d528f15b214d5a9ab1ac6ec054de10 Mon Sep 17 00:00:00 2001 From: Rea Rustagi <85902999+rustagir@users.noreply.github.com> Date: Thu, 3 Jul 2025 09:45:22 -0400 Subject: [PATCH 1/2] DOCSP-51402: schema-flexible terminology (#3424) --- docs/database-collection.txt | 11 ++++++----- docs/feature-compatibility.txt | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/database-collection.txt b/docs/database-collection.txt index be081c97b..e8d97711a 100644 --- a/docs/database-collection.txt +++ b/docs/database-collection.txt @@ -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 ``````` @@ -269,9 +269,10 @@ collection fields: - ``Schema::hasColumns(string $, string[] $)``: 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 diff --git a/docs/feature-compatibility.txt b/docs/feature-compatibility.txt index 707f12c70..cce0932cc 100644 --- a/docs/feature-compatibility.txt +++ b/docs/feature-compatibility.txt @@ -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 ---------------- From 1bb06ec764b1e7ce21eeb186d23d9a01105aa86f Mon Sep 17 00:00:00 2001 From: Nora Reidy Date: Thu, 10 Jul 2025 09:56:48 -0400 Subject: [PATCH 2/2] DOCSP-50960: Install PHP ext with pie (#3419) (#3426) (cherry picked from commit a77aa60df132a8ec0d3f18c0bae652e5ee5a969a) --- docs/quick-start/download-and-install.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/quick-start/download-and-install.txt b/docs/quick-start/download-and-install.txt index 293425791..f6a44a264 100644 --- a/docs/quick-start/download-and-install.txt +++ b/docs/quick-start/download-and-install.txt @@ -47,9 +47,9 @@ to a Laravel web application. .. step:: Install the {+php-extension+} {+odm-long+} requires the {+php-extension+} to manage MongoDB - connections and commands. - Follow the :php:`Installing the MongoDB PHP Driver with PECL - ` guide to install the {+php-extension+}. + connections and commands. To learn how to install the {+php-extension+}, see + the `Install the MongoDB PHP extension `__ + step of the Get Started with the PHP Library guide. .. step:: Install Laravel