-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added changes to models from the feedback loop PR * Added conversationShared column to feedbacks table * Enforcing non null values for feedback * Removed unused Non-attributes of AgentMessageFeedback * Undoing manual changes, preparing migration * Adding sqlize instructions * Added migration via npm run create-db-migration * Conversation explicitly not shared by default * Anticipating migration file conflict, renamed variable * Using agentMessage to stick to User convention just above * removed non-migration code * updated name in migration --------- Co-authored-by: Lucas <[email protected]>
- Loading branch information
Showing
3 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- Migration created on Dec 16, 2024 | ||
ALTER TABLE "public"."agent_message_feedbacks" ADD COLUMN "isConversationShared" BOOLEAN NOT NULL DEFAULT false; |