wip
This commit is contained in:
parent
62d9dff008
commit
6dfd723216
|
|
@ -13,6 +13,10 @@ class CreateWebSocketsStatisticsEntriesTable extends Migration
|
|||
{
|
||||
Schema::create('websockets_statistics_entries', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('app_id');
|
||||
$table->integer('peak_connections');
|
||||
$table->integer('websocket_message_count');
|
||||
$table->integer('api_message_count');
|
||||
$table->nullableTimestamps();
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue