Skip to content

Commit 96325a8

Browse files
committed
docs: update case sensitivity
1 parent 67a6b84 commit 96325a8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Schema::createFunction(
195195
A sixth parameter lets you define further options for the function. Please [read the manual](https://www.postgresql.org/docs/current/sql-createfunction.html) for the exact meaning, some of them set enable or disable ways for PostgreSQL to optimize the execution.
196196

197197
| Option | Values | Description |
198-
|----------------|-----------------------------------|----------------------------------------------------------------------------------------------------------------|
198+
| -------------- | --------------------------------- | -------------------------------------------------------------------------------------------------------------- |
199199
| `calledOnNull` | bool | Defines whether the function should be called for NULL values. |
200200
| `cost` | integer | Defines the cost for executing the function. |
201201
| `leakproof` | bool | Informs whether the function has side effects. |
@@ -254,7 +254,7 @@ Schema::table('projects', function (Blueprint $table): void {
254254
The following table contains all of the available trigger modifiers:
255255

256256
| Modifier | Description |
257-
|-----------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
257+
| --------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
258258
| `->forEachRow()` | The trigger will be called for every row. |
259259
| `->forEachStatement()` | The trigger will be called once for each statement *(default)*. |
260260
| `->transitionTables(`<br>` old: 'oldrows',`<br>` new: 'newrows',`<br>`)` | The forEachStatement-trigger will provide the before/after state of the affected rows in special tables. You can omit either option if not valid for this trigger. |
@@ -1018,7 +1018,7 @@ User::query()
10181018
In addition to the basic form of a Common Table Expression these optional settings are available to support all PostgreSQL options:
10191019

10201020
| Option | Type | Description |
1021-
|--------------|----------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
1021+
| ------------ | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
10221022
| materialized | `bool` | Whether the CTE should be (not) materialized. This overrides PostgreSQL's automatic materialization decision. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#id-1.5.6.12.7) |
10231023
| recursive | `bool` | Whether to use a recursive CTE. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#QUERIES-WITH-RECURSIVE) |
10241024
| cycle | `string` | Specify the automatic cycle detection settings for recursive queries. [(Documentation)](https://www.postgresql.org/docs/current/queries-with.html#QUERIES-WITH-CYCLE) |
@@ -1103,11 +1103,11 @@ $query->orWhereNotBoolean($column, bool $value);
11031103

11041104
#### Like
11051105

1106-
With the `whereLike` scope you can compare a column to a (case-insensitive) value.
1106+
With the `whereLike` scope you can compare a column to a (case-sensitive) value.
11071107

11081108
```php
1109-
$query->whereLike($column, $value, $caseInsensitive = false);
1110-
$query->orWhereLike($column, $value, $caseInsensitive = false);
1109+
$query->whereLike($column, $value, $caseSensitive = false);
1110+
$query->orWhereLike($column, $value, $caseSensitive = false);
11111111
```
11121112

11131113
#### Between Symmetric
@@ -1170,7 +1170,7 @@ Some of the PostgreSQL types are represented in a string format that a Laravel a
11701170
To make those types usable, these casts can be used with your eloquent models:
11711171

11721172
| Type | Cast |
1173-
|----------------|-------------------------------------------------------------|
1173+
| -------------- | ----------------------------------------------------------- |
11741174
| `integerArray` | `Tpetry\PostgresqlEnhanced\Eloquent\Casts\IntegerArrayCast` |
11751175
| `vector` | `Tpetry\PostgresqlEnhanced\Eloquent\Casts\VectorArray` |
11761176

0 commit comments

Comments
 (0)