mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
7 lines
199 B
Ruby
7 lines
199 B
Ruby
class AddIdpCertToSamlProvider < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :saml_providers, :idp_cert, :string
|
|
add_column :saml_providers, :idp_cert_fingerprint, :string
|
|
end
|
|
end
|