Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function up(): void |
||
26 | { |
||
27 | Schema::create('sense_requests', function (Blueprint $table) { |
||
28 | $table->bigIncrements('id'); |
||
29 | $table->uuid('correlation_id'); |
||
30 | $table->unsignedBigInteger('url_id'); |
||
31 | $table->string('method'); |
||
32 | $table->timestamps(); |
||
33 | |||
34 | $table->index('correlation_id'); |
||
35 | $table->index('url_id'); |
||
36 | }); |
||
49 |