2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/db/migrate/20141110150304_add_footer_to_site_customization.rb

7 lines
200 B
Ruby
Raw Normal View History

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