File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export const chat = pgTable('Chat', {
34
34
export type Chat = InferSelectModel < typeof chat > ;
35
35
36
36
// 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
38
38
export const messageDeprecated = pgTable ( 'Message' , {
39
39
id : uuid ( 'id' ) . primaryKey ( ) . notNull ( ) . defaultRandom ( ) ,
40
40
chatId : uuid ( 'chatId' )
@@ -61,7 +61,7 @@ export const message = pgTable('Message_v2', {
61
61
export type DBMessage = InferSelectModel < typeof message > ;
62
62
63
63
// 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
65
65
export const voteDeprecated = pgTable (
66
66
'Vote' ,
67
67
{
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ai-chatbot" ,
3
- "version" : " 3.0.21 " ,
3
+ "version" : " 3.0.22 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " next dev --turbo" ,
You can’t perform that action at this time.
0 commit comments