1
0
Fork 0
forked from OpenNeo/impress
impress/db/migrate/20150802202909_add_theme_id_to_campaigns.rb

6 lines
152 B
Ruby
Raw Normal View History

2015-08-05 16:26:12 -07:00
class AddThemeIdToCampaigns < ActiveRecord::Migration
def change
add_column :campaigns, :theme_id, :string, null: false, default: 'hug'
end
end