| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function up(): void |
||
| 26 | { |
||
| 27 | Schema::create('sense_request_summaries', function (Blueprint $table) { |
||
| 28 | $table->bigIncrements('id'); |
||
| 29 | $table->unsignedBigInteger('request_id'); |
||
| 30 | $table->unsignedInteger('queries_count')->default('0'); |
||
| 31 | $table->double('time_total', 10, 2)->default('0'); |
||
| 32 | $table->timestamps(); |
||
| 33 | }); |
||
| 46 |