Extend notifications to be marked as read and unread

This commit is contained in:
rgarcia
2018-02-27 14:47:52 +01:00
parent c4ad9b940c
commit 09c44ee583
22 changed files with 445 additions and 141 deletions

View File

@@ -0,0 +1,5 @@
class AddReadAtToNotifications < ActiveRecord::Migration
def change
add_column :notifications, :read_at, :timestamp
end
end