mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-06 09:20:14 +00:00
7 lines
164 B
Ruby
7 lines
164 B
Ruby
# frozen_string_literal: true
|
|
class LlmModelCustomParams < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :llm_models, :provider_params, :jsonb
|
|
end
|
|
end
|