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

20160615173316_add_enabled_git_access_protocols_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: d0e6d8d1ea15b62b7c405cae703c7cc225c60b78 (plain)
1
2
3
4
5
6
7
8
9
10
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddEnabledGitAccessProtocolsToApplicationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  def change
    add_column :application_settings, :enabled_git_access_protocol, :string
  end
end