gitlab-org--gitlab-foss/db/migrate/20160118155830_add_sentry_to_application_settings.rb
2016-01-18 17:15:10 +01:00

8 lines
215 B
Ruby

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