discourse/db/migrate/20141110150304_add_footer_to_site_customization.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
231 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddFooterToSiteCustomization < ActiveRecord::Migration[4.2]
2014-11-11 04:51:55 +08:00
def change
add_column :site_customizations, :footer, :text
add_column :site_customizations, :mobile_footer, :text
end
end