Skip to content
Snippets Groups Projects

Add Pass User Identities entry to "User Preferences" table

All threads resolved!
4 files
+ 12
0
Compare changes
  • Side-by-side
  • Inline
Files
4
# 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