BigW Consortium Gitlab

20151005162154_remove_ci_enabled_from_application_settings.rb 207 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6
class RemoveCiEnabledFromApplicationSettings < ActiveRecord::Migration
  def change
    remove_column :application_settings, :ci_enabled, :boolean, null: false, default: true
  end
end