2024-05-05 19:49:02 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ChatMessageCustomPrompt < ActiveRecord::Base
|
|
|
|
# belongs_to chat message but going to avoid the cross dependency for now
|
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
2024-06-18 13:32:14 -04:00
|
|
|
# Table name: chat_message_custom_prompts
|
2024-05-05 19:49:02 -04:00
|
|
|
#
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
# message_id :bigint not null
|
|
|
|
# custom_prompt :json not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
2024-06-18 13:32:14 -04:00
|
|
|
# index_chat_message_custom_prompts_on_message_id (message_id) UNIQUE
|
2024-05-05 19:49:02 -04:00
|
|
|
#
|