mirror of
https://ghfast.top/https://github.com/discourse/discourse-ai.git
synced 2026-07-15 11:27:11 +08:00
7 lines
175 B
Ruby
7 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MultiMessageCompletionPrompts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :completion_prompts, :messages, :jsonb
|
|
end
|
|
end
|