Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | public function up(): void |
||
26 | { |
||
27 | Schema::create('sense_request_db_queries', function (Blueprint $table) { |
||
28 | $table->bigIncrements('id'); |
||
29 | $table->unsignedBigInteger('request_id'); |
||
30 | $table->unsignedBigInteger('statement_id'); |
||
31 | $table->string('connection'); |
||
32 | $table->mediumText('sql'); |
||
33 | $table->json('bindings'); |
||
34 | $table->double('time', 6, 2); |
||
35 | $table->timestamps(); |
||
36 | |||
37 | $table->index('request_id'); |
||
38 | $table->index('statement_id'); |
||
39 | }); |
||
52 |