Skip to content

Commit e00dd69

Browse files
authored
Renaming "Terminology" to "Bookmarks". (#19679)
1 parent 76d401b commit e00dd69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/docs/d1/reference/time-travel.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Time Travel is D1's approach to backups and point-in-time-recovery, and allows y
99

1010
- You do not need to enable Time Travel. It is always on.
1111
- Database history and restoring a database incur no additional costs.
12-
- Time Travel automatically creates [bookmarks](#terminology) on your behalf. You do not need to manually trigger or remember to initiate a backup.
12+
- Time Travel automatically creates [bookmarks](#bookmarks) on your behalf. You do not need to manually trigger or remember to initiate a backup.
1313

1414
By not having to rely on scheduled backups and/or manually initiated backups, you can go back in time and restore a database prior to a failed migration or schema change, a `DELETE` or `UPDATE` statement without a specific `WHERE` clause, and in the future, fork/copy a production database directly.
1515

@@ -21,7 +21,7 @@ To understand which storage subsystem your database uses, run `wrangler d1 info
2121

2222
:::
2323

24-
## Terminology
24+
## Bookmarks
2525

2626
Time Travel introduces the concept of a "bookmark" to D1. A bookmark represents the state of a database at a specific point in time, and is effectively an append-only log.
2727

@@ -95,7 +95,7 @@ Note that:
9595

9696
- Timestamps are converted to a deterministic, stable bookmark. The same timestamp will always represent the same bookmark.
9797
- Queries in flight will be cancelled, and an error returned to the client.
98-
- The restore operation will return a [bookmark](#terminology) that allows you to [undo](#undo-a-restore) and revert the database.
98+
- The restore operation will return a [bookmark](#bookmarks) that allows you to [undo](#undo-a-restore) and revert the database.
9999

100100
## Undo a restore
101101

0 commit comments

Comments
 (0)