1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20150728195029_add_name_to_campaigns.rb
2015-08-05 19:26:12 -04:00

6 lines
195 B
Ruby

class AddNameToCampaigns < ActiveRecord::Migration
def change
# TODO: translations?
add_column :campaigns, :name, :string, null: false, default: 'our hosting costs this year'
end
end