summaryrefslogtreecommitdiff
path: root/db/migrate/20160118155830_add_sentry_to_application_settings.rb
blob: a6f715263efcf7f1e26c82f1671af68b84c2b462 (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class AddSentryToApplicationSettings < ActiveRecord::Migration
  def change
    change_table :application_settings do |t|
      t.boolean :sentry_enabled, default: false
      t.string :sentry_dsn
    end
  end
end