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
2024-06-05 12:04:26 +02:00

8 lines
177 B
Ruby

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