Files
chatwoot/db/migrate/20240215065844_add_meta_to_notifications.rb
Muhsin Keloth 3b7b06dbec feat: Add meta to notification model (#8941)
* feat: Add meta and description to notification model

* chore: remove description
2024-02-16 14:38:02 +05:30

6 lines
141 B
Ruby

class AddMetaToNotifications < ActiveRecord::Migration[7.0]
def change
add_column :notifications, :meta, :jsonb, default: {}
end
end