Class: AddNotificationCode
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddNotificationCode
- Defined in:
- lib/generators/mailboxer/templates/add_notification_code.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
8 9 10 11 12 |
# File 'lib/generators/mailboxer/templates/add_notification_code.rb', line 8 def self.down change_table :notifications do |t| t.remove :notification_code end end |
.up ⇒ Object
2 3 4 5 6 |
# File 'lib/generators/mailboxer/templates/add_notification_code.rb', line 2 def self.up change_table :notifications do |t| t.string :notification_code, :default => nil end end |