Class: AddCampaignAttachments

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
db/migrate/20101009023300_add_campaign_attachments.rb

Class Method Summary collapse

Class Method Details

.downObject



9
10
11
# File 'db/migrate/20101009023300_add_campaign_attachments.rb', line 9

def self.down
  remove_column :attachments, :campaign_id
end

.upObject



5
6
7
# File 'db/migrate/20101009023300_add_campaign_attachments.rb', line 5

def self.up
  add_column :attachments, :campaign_id, :integer
end