From 9127e1be88e40c10732c93bdeee8e3aca5640245 Mon Sep 17 00:00:00 2001 From: Jeremy Date: Wed, 7 May 2025 21:59:44 -0700 Subject: [PATCH] chore: update links to migration docs (#990) Co-authored-by: brian --- lib/db/schema.ts | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/db/schema.ts b/lib/db/schema.ts index 6de4559..8f9256b 100644 --- a/lib/db/schema.ts +++ b/lib/db/schema.ts @@ -34,7 +34,7 @@ export const chat = pgTable('Chat', { export type Chat = InferSelectModel; // DEPRECATED: The following schema is deprecated and will be removed in the future. -// Read the migration guide at https://github.com/vercel/ai-chatbot/blob/main/docs/04-migrate-to-parts.md +// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts export const messageDeprecated = pgTable('Message', { id: uuid('id').primaryKey().notNull().defaultRandom(), chatId: uuid('chatId') @@ -61,7 +61,7 @@ export const message = pgTable('Message_v2', { export type DBMessage = InferSelectModel; // DEPRECATED: The following schema is deprecated and will be removed in the future. -// Read the migration guide at https://github.com/vercel/ai-chatbot/blob/main/docs/04-migrate-to-parts.md +// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts export const voteDeprecated = pgTable( 'Vote', { diff --git a/package.json b/package.json index 38b35fe..737b94f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ai-chatbot", - "version": "3.0.21", + "version": "3.0.22", "private": true, "scripts": { "dev": "next dev --turbo",