summaryrefslogtreecommitdiff
path: root/db/migrate/20160121030729_add_email_author_in_body_to_application_settings.rb
blob: 9a2570ae54486eeb4dc939995bee7bdf42d44d6b (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEmailAuthorInBodyToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :email_author_in_body, :boolean, default: false
  end
end