mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:03:45 +08:00
6 lines
195 B
Ruby
Vendored
6 lines
195 B
Ruby
Vendored
# 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
|