1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20150728195029_add_name_to_campaigns.rb

7 lines
200 B
Ruby
Raw Normal View History

class AddNameToCampaigns < ActiveRecord::Migration[3.2]
2015-08-05 16:26:12 -07:00
def change
# TODO: translations?
add_column :campaigns, :name, :string, null: false, default: 'our hosting costs this year'
end
end