Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function boot() |
||
18 | { |
||
19 | // Publish the migration if it does not exists |
||
20 | if (!class_exists('CreateSchedulelogsTable')) { |
||
21 | $timestamp = date('Y_m_d_His', time()); |
||
22 | $this->publishes([ |
||
23 | __DIR__.'/../database/migrations/create_schedulelogs_table.php.stub' => database_path('migrations/'.$timestamp.'_create_schedulelogs_table.php'), |
||
24 | ], 'migrations'); |
||
25 | } |
||
26 | } |
||
27 | |||
46 |