debian-mirror-gitlab/db/migrate/20160615173316_add_enabled_git_access_protocols_to_application_settings.rb
2016-08-24 12:49:21 +05:30

12 lines
382 B
Ruby

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
# rubocop:disable all
class AddEnabledGitAccessProtocolsToApplicationSettings < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
def change
add_column :application_settings, :enabled_git_access_protocol, :string
end
end