Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151005162154_remove_ci_enabled_from_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07dba598749d5386f0768d8b521fa6794c1d9c74 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveCiEnabledFromApplicationSettings < ActiveRecord::Migration
  def change
    remove_column :application_settings, :ci_enabled, :boolean, null: false, default: true
  end
end