- Add API support for creating a thread - Add API support for creating a message - Remove uuid from thread (no longer required, we will use existing websocket connection to send messages) - Update message_type to a column (user, assistant, assistant_thinking)
6 lines
151 B
Ruby
6 lines
151 B
Ruby
class RemoveUserIdFromCopilotMessages < ActiveRecord::Migration[7.1]
|
|
def change
|
|
remove_reference :copilot_messages, :user, index: true
|
|
end
|
|
end
|