mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 20:18:16 +00:00
8 lines
175 B
Ruby
8 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MultiMessageCompletionPrompts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :completion_prompts, :messages, :jsonb
|
|
end
|
|
end
|