Class: AddNotificationCode

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/mailboxer/templates/add_notification_code.rb

Class Method Summary collapse

Class Method Details

.downObject



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

.upObject



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