Update statistics table name check

Class name was missing Table, this result into creating new migrations everytime you publish the package.
This commit is contained in:
robindrost 2020-06-30 14:48:28 +02:00 committed by GitHub
parent c5c11612e3
commit 45d951c56b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class WebSocketsServiceProvider extends ServiceProvider
__DIR__.'/../config/websockets.php' => base_path('config/websockets.php'),
], 'config');
if (! class_exists('CreateWebSocketsStatisticsEntries')) {
if (! class_exists('CreateWebSocketsStatisticsEntriesTable')) {
$this->publishes([
__DIR__.'/../database/migrations/create_websockets_statistics_entries_table.php.stub' => database_path('migrations/'.date('Y_m_d_His', time()).'_create_websockets_statistics_entries_table.php'),
], 'migrations');