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

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