gitlab-org--gitlab-foss/db/migrate/20160118155830_add_sentry_t...

9 lines
215 B
Ruby
Raw Normal View History

2016-01-18 16:15:10 +00: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