mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
6 lines
141 B
Ruby
6 lines
141 B
Ruby
class AddMetaToNotifications < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :notifications, :meta, :jsonb, default: {}
|
|
end
|
|
end
|