1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-01 21:52:19 +01:00
fab-manager/db/migrate/20240605085829_add_uid_attribute_to_saml_provider.rb

8 lines
177 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUidAttributeToSamlProvider < ActiveRecord::Migration[7.0]
def change
add_column :saml_providers, :uid_attribute, :string
end
end