summaryrefslogtreecommitdiff
path: root/db/migrate/20140429074424_add_global_notification_support.mailboxer_engine.rb
blob: 60f67abdf4ac7bdb254321105421b7184b05ffdc (plain)
1
2
3
4
5
6
7
8
9
10
# This migration comes from mailboxer_engine (originally 20130305144212)
class AddGlobalNotificationSupport < ActiveRecord::Migration

  def change
    change_table :notifications do |t|
      t.boolean :global, default: false
      t.datetime :expires
    end
  end
end