| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | public function up() |
||
| 13 | { |
||
| 14 | Schema::create('websockets_statistics_entries', function (Blueprint $table) { |
||
| 15 | $table->increments('id'); |
||
| 16 | $table->string('app_id'); |
||
| 17 | $table->integer('peak_connection_count'); |
||
| 18 | $table->integer('websocket_message_count'); |
||
| 19 | $table->integer('api_message_count'); |
||
| 20 | $table->nullableTimestamps(); |
||
| 21 | }); |
||
| 22 | } |
||
| 23 | /** |
||
| 31 |