6 lines
132 B
Ruby
6 lines
132 B
Ruby
class AddReadAtToNotifications < ActiveRecord::Migration
|
|
def change
|
|
add_column :notifications, :read_at, :timestamp
|
|
end
|
|
end
|