summaryrefslogtreecommitdiff
path: root/db/migrate/20150916114643_add_help_page_text_to_application_settings.rb
blob: a504f25b1be62786349e64e9f1c65ab3ecfcaa0a (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddHelpPageTextToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :help_page_text, :text
  end
end