Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class AddSpEntityIdOverrideColumnToSaml2TenantsTable extends Migration |
||
10 | { |
||
11 | /** |
||
12 | * Run the migrations. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function up() |
||
17 | { |
||
18 | Schema::table('saml2_tenants', function (Blueprint $table) { |
||
19 | $table->string('sp_entity_id_override')->nullable(); |
||
20 | }); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Reverse the migrations. |
||
25 | * |
||
26 | * @return void |
||
27 | */ |
||
28 | public function down() |
||
32 | }); |
||
33 | } |
||
35 |