mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-10 08:03:28 +00:00
7 lines
173 B
Ruby
7 lines
173 B
Ruby
|
# frozen_string_literal: true
|
||
|
class AddDurationToAiApiLog < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :ai_api_audit_logs, :duration_msecs, :integer
|
||
|
end
|
||
|
end
|