Skip to content

Commit 9127e1b

Browse files
chore: update links to migration docs (#990)
Co-authored-by: brian <brian@antimetal.com>
1 parent 3539596 commit 9127e1b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/db/schema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const chat = pgTable('Chat', {
3434
export type Chat = InferSelectModel<typeof chat>;
3535

3636
// DEPRECATED: The following schema is deprecated and will be removed in the future.
37-
// Read the migration guide at https://github.com/vercel/ai-chatbot/blob/main/docs/04-migrate-to-parts.md
37+
// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts
3838
export const messageDeprecated = pgTable('Message', {
3939
id: uuid('id').primaryKey().notNull().defaultRandom(),
4040
chatId: uuid('chatId')
@@ -61,7 +61,7 @@ export const message = pgTable('Message_v2', {
6161
export type DBMessage = InferSelectModel<typeof message>;
6262

6363
// DEPRECATED: The following schema is deprecated and will be removed in the future.
64-
// Read the migration guide at https://github.com/vercel/ai-chatbot/blob/main/docs/04-migrate-to-parts.md
64+
// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts
6565
export const voteDeprecated = pgTable(
6666
'Vote',
6767
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ai-chatbot",
3-
"version": "3.0.21",
3+
"version": "3.0.22",
44
"private": true,
55
"scripts": {
66
"dev": "next dev --turbo",

0 commit comments

Comments
 (0)