mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:25:50 +08:00
7 lines
214 B
Ruby
Vendored
7 lines
214 B
Ruby
Vendored
# 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
|