mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-02-07 12:08:13 +00:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddLimitsToAiPersona < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
change_table :ai_personas do |t|
|
||
|
t.integer :max_context_posts, null: true
|
||
|
end
|
||
|
end
|
||
|
end
|