rebrand ai-chatbot to openchat across app and api (#1418)
This commit is contained in:
parent
9d5d8a3ea7
commit
f7b6b55a8b
17 changed files with 90 additions and 90 deletions
|
|
@ -34,7 +34,7 @@ export const chat = pgTable("Chat", {
|
|||
export type Chat = InferSelectModel<typeof chat>;
|
||||
|
||||
// DEPRECATED: The following schema is deprecated and will be removed in the future.
|
||||
// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts
|
||||
// Read the migration guide at https://openchat.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<typeof message>;
|
||||
|
||||
// DEPRECATED: The following schema is deprecated and will be removed in the future.
|
||||
// Read the migration guide at https://chat-sdk.dev/docs/migration-guides/message-parts
|
||||
// Read the migration guide at https://openchat.dev/docs/migration-guides/message-parts
|
||||
export const voteDeprecated = pgTable(
|
||||
"Vote",
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue