mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-07-08 15:22:47 +00:00
8 lines
160 B
Ruby
8 lines
160 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddExamplesToPersonas < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :ai_personas, :examples, :jsonb
|
||
|
end
|
||
|
end
|