Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function down() |
||
31 | { |
||
32 | Schema::table('saml2_identity_providers', function (Blueprint $table) { |
||
33 | $table->string('idp_entity_id')->nullable(false)->change(); |
||
34 | $table->string('idp_login_url')->nullable(false)->change(); |
||
35 | $table->string('idp_logout_url')->nullable(false)->change(); |
||
36 | $table->string('name_id_format')->nullable(false)->change(); |
||
37 | $table->text('idp_x509_cert')->nullable(false)->change(); |
||
38 | }); |
||
41 |