6 lines
117 B
Ruby
6 lines
117 B
Ruby
|
class AddThanksToCampaign < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :campaigns, :thanks, :text
|
||
|
end
|
||
|
end
|