mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-05 17:00:34 +00:00
7 lines
195 B
Ruby
7 lines
195 B
Ruby
|
# frozen_string_literal: true
|
||
|
class LlmModelVisionEnabled < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
add_column :llm_models, :vision_enabled, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|