Commit cacfd73
authored
The TypeScript table index definition uses `accessor` not `name` for the
index identifier. Fixes three instances:
- `docs/docs/.../indexes.md`: two occurrences (`idx_age`,
`by_player_and_level`)
- `docs/docs/.../constraints.md`: one occurrence (`by_user_item`)
```diff
-{ name: 'by_player_and_level', algorithm: 'btree', columns: ['player_id', 'level'] }
+{ accessor: 'by_player_and_level', algorithm: 'btree', columns: ['player_id', 'level'] }
```
Co-authored-by: clockwork-labs-bot <clockwork-labs-bot@users.noreply.github.com>
1 parent e8d829d commit cacfd73
2 files changed
Lines changed: 3 additions & 3 deletions
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
108 | | - | |
| 108 | + | |
109 | 109 | | |
110 | 110 | | |
111 | 111 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
187 | 187 | | |
188 | 188 | | |
189 | 189 | | |
190 | | - | |
| 190 | + | |
191 | 191 | | |
192 | 192 | | |
193 | 193 | | |
| |||
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
259 | | - | |
| 259 | + | |
260 | 260 | | |
261 | 261 | | |
262 | 262 | | |
| |||
0 commit comments