@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::table('saml2_identity_providers', function (Blueprint $table) { |
|
| 16 | + Schema::table('saml2_identity_providers', function(Blueprint $table) { |
|
| 17 | 17 | $table->string('idp_entity_id')->nullable()->change(); |
| 18 | 18 | $table->string('idp_login_url')->nullable()->change(); |
| 19 | 19 | $table->string('idp_logout_url')->nullable()->change(); |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function down() |
| 31 | 31 | { |
| 32 | - Schema::table('saml2_identity_providers', function (Blueprint $table) { |
|
| 32 | + Schema::table('saml2_identity_providers', function(Blueprint $table) { |
|
| 33 | 33 | $table->string('idp_entity_id')->nullable(false)->change(); |
| 34 | 34 | $table->string('idp_login_url')->nullable(false)->change(); |
| 35 | 35 | $table->string('idp_logout_url')->nullable(false)->change(); |