Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160121030729_add_email_author_in_body_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d50791410f9333a98cbbef995fdc3ca280db91fa (plain)
1
2
3
4
5
class AddEmailAuthorInBodyToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :email_author_in_body, :boolean, default: false
  end
end