2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2016-01-18 11:15:10 -05:00
|
|
|
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
|