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
@@ -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