mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35:40 +08:00
6 lines
164 B
Ruby
Vendored
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
|