debian-mirror-gitlab/db/migrate/20160412140240_add_repository_checks_enabled_setting.rb
2018-12-23 12:14:25 +05:30

7 lines
206 B
Ruby

# rubocop:disable all
class AddRepositoryChecksEnabledSetting < ActiveRecord::Migration[4.2]
def change
add_column :application_settings, :repository_checks_enabled, :boolean, default: true
end
end