mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 18:22:53 +00:00
Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
7 lines
219 B
Ruby
7 lines
219 B
Ruby
class ConvertIntegrationHookSettingsField < ActiveRecord::Migration[6.0]
|
|
def change
|
|
remove_column :integrations_hooks, :settings, :text
|
|
add_column :integrations_hooks, :settings, :jsonb, default: {}
|
|
end
|
|
end
|