This commit is contained in:
freek 2018-12-03 12:01:19 +01:00
parent 62d9dff008
commit 6dfd723216
1 changed files with 4 additions and 0 deletions

View File

@ -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();
});
}