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

20151008143519_add_admin_notification_email_setting.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f48ec9aa4a6daa062e923f5c556675fc8aac7305 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddAdminNotificationEmailSetting < ActiveRecord::Migration
  def change
    add_column :application_settings, :admin_notification_email, :string
  end
end