9 lines
237 B
Ruby
9 lines
237 B
Ruby
# 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
|