Files
nairobi/db/migrate/20180222120017_add_read_at_to_notifications.rb

6 lines
132 B
Ruby

class AddReadAtToNotifications < ActiveRecord::Migration
def change
add_column :notifications, :read_at, :timestamp
end
end