Skip to content
New issue

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

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

Already on GitHub? # to your account

PHPORM-157 Remove Blueprint::background() #3132

Merged
merged 1 commit into from
Sep 4, 2024
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
* **BREAKING CHANGE** Make Query\Builder return objects instead of array to match Laravel behavior by @GromNaN in [#3107](https://github.com/mongodb/laravel-mongodb/pull/3107)
* **BREAKING CHANGE** In DB query results, convert BSON `UTCDateTime` objects into `Carbon` date with the default timezone by @GromNaN in [#3119](https://github.com/mongodb/laravel-mongodb/pull/3119)
* Remove `MongoFailedJobProvider`, replaced by Laravel `DatabaseFailedJobProvider` by @GromNaN in [#3122](https://github.com/mongodb/laravel-mongodb/pull/3122)
* Remove `Blueprint::background()` method by @GromNaN in [#3132](https://github.com/mongodb/laravel-mongodb/pull/3132)

## [4.8.0] - 2024-08-27

16 changes: 0 additions & 16 deletions src/Schema/Blueprint.php
Original file line number Diff line number Diff line change
@@ -177,22 +177,6 @@ public function unique($columns = null, $name = null, $algorithm = null, $option
return $this;
}

/**
* Specify a non blocking index for the collection.
*
* @param string|array $columns
*
* @return Blueprint
*/
public function background($columns = null)
{
$columns = $this->fluent($columns);

$this->index($columns, null, null, ['background' => true]);

return $this;
}

/**
* Specify a sparse index for the collection.
*
10 changes: 0 additions & 10 deletions tests/SchemaTest.php
Original file line number Diff line number Diff line change
@@ -245,16 +245,6 @@ public function testHasIndex(): void
});
}

public function testBackground(): void
{
Schema::table('newcollection', function ($collection) {
$collection->background('backgroundkey');
});

$index = $this->getIndex('newcollection', 'backgroundkey');
$this->assertEquals(1, $index['background']);
}

public function testSparse(): void
{
Schema::table('newcollection', function ($collection) {
Loading