mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +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
|