mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
9 lines
252 B
Ruby
9 lines
252 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddParamsToCompletionPrompt < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :completion_prompts, :temperature, :integer
|
||
|
add_column :completion_prompts, :stop_sequences, :string, array: true
|
||
|
end
|
||
|
end
|