mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 15:22:47 +00:00
10 lines
268 B
Ruby
10 lines
268 B
Ruby
|
# 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
|