💅 changelog from #44803

This commit is contained in:
zzak 2023-02-22 10:48:15 +09:00
parent 9621ae961c
commit c7e444e3b0
No known key found for this signature in database
GPG Key ID: 213927DFCF4FF102
1 changed files with 2 additions and 3 deletions

View File

@ -81,7 +81,7 @@
*Leonardo Luarte*
* Add `:include` index option
* Add `:include` option to `add_index`.
Add support for including non-key columns in indexes for PostgreSQL
with the `INCLUDE` parameter.
@ -93,8 +93,7 @@
will result in:
```sql
CREATE INDEX index_users_on_email USING btree (email) INCLUDE (id,
created_at)
CREATE INDEX index_users_on_email USING btree (email) INCLUDE (id, created_at)
```
*Steve Abrams*