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

20160118155830_add_sentry_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: 20f3925b964cd69e77af36d6aaf8d2f45f423525 (plain)
1
2
3
4
5
6
7
8
class AddSentryToApplicationSettings < ActiveRecord::Migration[4.2]
  def change
    change_table :application_settings do |t|
      t.boolean :sentry_enabled, default: false
      t.string :sentry_dsn
    end
  end
end