11 lines
183 B
Ruby
11 lines
183 B
Ruby
|
|
||
|
class AddClientsToCampaigns < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :clients, :campaign_id, :integer
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :clients, :campaign_id
|
||
|
end
|
||
|
end
|