mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-16 16:34:45 +00:00
7 lines
192 B
Ruby
7 lines
192 B
Ruby
|
# frozen_string_literal: true
|
||
|
class AddDefaultToProviderParams < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
change_column_default :llm_models, :provider_params, from: nil, to: {}
|
||
|
end
|
||
|
end
|