discourse/plugins/discourse-ai/db/migrate/20240624135356_llm_model_custom_params.rb
2025-07-22 15:07:59 +02:00

6 lines
164 B
Ruby
Vendored

# frozen_string_literal: true
class LlmModelCustomParams < ActiveRecord::Migration[7.0]
def change
add_column :llm_models, :provider_params, :jsonb
end
end