Class: AddSentTimeToNotifications

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/notify_user/aggr_interval_update/templates/add_sent_time_to_notifications.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/notify_user/aggr_interval_update/templates/add_sent_time_to_notifications.rb', line 2

def change
  add_column :notify_user_notifications, :sent_time, :datetime
  add_column :notify_user_notifications, :group_id, :integer
  add_column :notify_user_notifications, :parent_id, :integer

  add_index :notify_user_notifications, :group_id
  add_index :notify_user_notifications, :parent_id
end