FIX: Allow null messages to migrate existing rows (#22)

This commit is contained in:
Roman Rizzi 2023-03-21 12:33:30 -03:00 committed by GitHub
parent 39f7f1f29e
commit 55182ca0f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
class MultiMessageCompletionPrompts < ActiveRecord::Migration[7.0]
def change
add_column :completion_prompts, :messages, :jsonb, null: false
add_column :completion_prompts, :messages, :jsonb
end
end