discourse/db/migrate/20141110150304_add_footer_t...

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-10 15:51:55 -05:00
def change
add_column :site_customizations, :footer, :text
add_column :site_customizations, :mobile_footer, :text
end
end