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",