2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-01-29 22:53:50 +05:30
|
|
|
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
|