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::create('saml2_sessions', function (Blueprint $table) { |
||
17 | $table->id(); |
||
18 | $table->foreignId('idp_id')->constrained('saml2_identity_providers'); |
||
19 | $table->foreignId('user_id')->nullable(); |
||
20 | $table->json('payload'); |
||
21 | $table->timestamps('created_at'); |
||
|
|||
22 | }); |
||
35 |