Skip to content

Commit 810d553

Browse files
committed
undo markdown-changes
1 parent fda6d6f commit 810d553

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 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) |

0 commit comments

Comments
 (0)