Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::table('saml2_identity_providers', function (Blueprint $table) { |
||
17 | $table->string('idp_entity_id')->nullable()->change(); |
||
18 | $table->string('idp_login_url')->nullable()->change(); |
||
19 | $table->string('idp_logout_url')->nullable()->change(); |
||
20 | $table->string('name_id_format')->nullable()->change(); |
||
21 | $table->text('idp_x509_cert')->nullable()->change(); |
||
22 | }); |
||
41 |