discourse-ai/db/migrate/20240719143453_llm_model_vision_enabled.rb
Roman Rizzi 5c196bca89
FEATURE: Track if a model can do vision in the llm_models table (#725)
* FEATURE: Track if a model can do vision in the llm_models table

* Data migration
2024-07-24 16:29:47 -03:00

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