* Add initial push notification logic for iOS * Adjust notification form css * Clean up schema.rb * Add mark-all-as-read functionality for ios notifications * Update app/models/notification.rb Fix `find` to `find_by` Co-Authored-By: benhalpern <bendhalpern@gmail.com>
5 lines
175 B
Ruby
5 lines
175 B
Ruby
class AddMobileCommentNotificationsToUsers < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :users, :mobile_comment_notifications, :boolean, default: true
|
|
end
|
|
end
|