mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00: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
|