From cb2acd1cb87f4e2582f0190e81f762ad2a13b7b4 Mon Sep 17 00:00:00 2001 From: norareidy Date: Wed, 1 May 2024 11:33:28 -0400 Subject: [PATCH] DOCSP-39154: Fix Schema Builder typo --- docs/eloquent-models/schema-builder.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/eloquent-models/schema-builder.txt b/docs/eloquent-models/schema-builder.txt index 551de4696..0003d3e7b 100644 --- a/docs/eloquent-models/schema-builder.txt +++ b/docs/eloquent-models/schema-builder.txt @@ -126,8 +126,8 @@ To check whether a collection exists, call the ``hasCollection()`` method on the ``Schema`` facade in your migration file. You can use this to perform migration logic conditionally. -The following example migration creates a ``stars`` collection if a collection -named ``telescopes`` exists: +The following example migration creates a ``telescopes`` collection if a collection +named ``stars`` exists: .. literalinclude:: /includes/schema-builder/stars_migration.php :language: php