debian-mirror-gitlab/db/migrate/20171106133911_add_password_authentication_enabled_for_git_to_application_settings.rb
2019-02-15 15:39:39 +05:30

10 lines
303 B
Ruby

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