mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
11 lines
213 B
Ruby
11 lines
213 B
Ruby
class CreateSamlProviders < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :saml_providers do |t|
|
|
t.string :sp_entity_id
|
|
t.string :idp_sso_service_url
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|