mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-15 11:27:11 +08:00
6 lines
164 B
Ruby
6 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
|