mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-04 21:02:35 +08:00
6 lines
148 B
Ruby
6 lines
148 B
Ruby
class AddSnoozedUntilToNotifications < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :notifications, :snoozed_until, :datetime
|
|
end
|
|
end
|