feat: Add meta to notification model (#8941)

* feat: Add meta and description to notification model

* chore: remove description
This commit is contained in:
Muhsin Keloth
2024-02-16 14:38:02 +05:30
committed by GitHub
parent 597a4164e8
commit 3b7b06dbec
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddMetaToNotifications < ActiveRecord::Migration[7.0]
def change
add_column :notifications, :meta, :jsonb, default: {}
end
end