Skip to content
Snippets Groups Projects

Add Pass User Identities entry to "User Preferences" table

Files
5
# frozen_string_literal: true
class AddIdentityToggleToApplicationSettings < Gitlab::Database::Migration[2.1]
def change
add_column :application_settings, :ci_pass_user_identities, :boolean, default: false, null: false
end
end
Loading