debian-mirror-gitlab/db/migrate/20160412140240_add_repository_checks_enabled_setting.rb

7 lines
201 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddRepositoryChecksEnabledSetting < ActiveRecord::Migration
2016-06-02 11:05:42 +05:30
def change
add_column :application_settings, :repository_checks_enabled, :boolean, default: true
end
end