discourse-ai/db/migrate/20250416215039_add_cost_metrics_to_llm_model.rb

10 lines
268 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCostMetricsToLlmModel < ActiveRecord::Migration[7.2]
def change
add_column :llm_models, :input_cost, :float
add_column :llm_models, :cached_input_cost, :float
add_column :llm_models, :output_cost, :float
end
end