discourse/db/migrate/20141110150304_add_footer_t...

7 lines
200 B
Ruby
Raw Normal View History

class AddFooterToSiteCustomization < ActiveRecord::Migration[4.2]
2014-11-10 15:51:55 -05:00
def change
add_column :site_customizations, :footer, :text
add_column :site_customizations, :mobile_footer, :text
end
end