We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2da788 commit 986fb28Copy full SHA for 986fb28
tests/TestCase.php
@@ -144,11 +144,11 @@ protected function setUpDatabaseOnce(Connection $conn): void
144
}
145
if (!$conn->databaseExists()) {
146
$conn->createDatabase($this->getTestDatabaseDDLs());
147
- }
148
149
- $conn->getSchemaBuilder()->setDatabaseOptions([
150
- 'default_sequence_kind' => 'bit_reversed_positive',
151
- ]);
+ $conn->getSchemaBuilder()->setDatabaseOptions([
+ 'default_sequence_kind' => 'bit_reversed_positive',
+ ]);
+ }
152
153
$this->beforeApplicationDestroyed(fn() => $this->cleanupDatabase($conn));
154
0 commit comments