mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 07:12:49 +00:00
8 lines
214 B
Ruby
8 lines
214 B
Ruby
|
# frozen_string_literal: true
|
||
|
class AddRagLlmModel < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :ai_personas, :rag_llm_model_id, :bigint
|
||
|
add_column :ai_tools, :rag_llm_model_id, :bigint
|
||
|
end
|
||
|
end
|