debian-mirror-gitlab/db/migrate/20171106133911_add_password_authentication_enabled_for_git_to_application_settings.rb
2018-03-17 18:26:18 +05:30

10 lines
298 B
Ruby

class AddPasswordAuthenticationEnabledForGitToApplicationSettings < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def change
add_column :application_settings, :password_authentication_enabled_for_git, :boolean, default: true, null: false
end
end