mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-16 16:34:45 +00:00
9 lines
250 B
Ruby
9 lines
250 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddCompanionUserToLlmModel < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :llm_models, :user_id, :integer
|
||
|
add_column :llm_models, :enabled_chat_bot, :boolean, null: false, default: false
|
||
|
end
|
||
|
end
|