chatwoot-develop/db/migrate/20240215065844_add_meta_to_notifications.rb

6 lines
141 B
Ruby
Executable File

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