Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusjunges committed Jan 30, 2024
1 parent 26cf71e commit 238a0e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

return new class extends Migration
{
private string $table_name = '';
private bool $usingUuid = false;
private string $table_name;
private bool $usingUuid;

public function __construct()
{
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/TrackableJobsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function boot()
], 'trackable-jobs-assets');

$this->publishes([
__DIR__ . '/../../database/migrations/laravel_trackable_create_tracked_jobs_table.php.stub'
__DIR__ . '/../../database/migrations/laravel_trackable_create_tracked_jobs_table.php'
=> database_path('migrations/'.date('Y_m_d_His', time()).'_create_tracked_jobs_table.php'),
], 'trackable-jobs-assets');
}
Expand Down

0 comments on commit 238a0e1

Please sign in to comment.