1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/db/migrate/20240126192110_add_idp_cert_to_saml_provider.rb

7 lines
199 B
Ruby
Raw Normal View History

2024-01-26 21:24:33 +01:00
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