Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
9 | public function boot() |
||
10 | { |
||
11 | if (!class_exists('CreateGamificationPointsTable')) { |
||
12 | $timestamp = date('Y_m_d_His', time()); |
||
13 | |||
14 | $this->publishes([ |
||
15 | __DIR__ . '/../resources/migrations/create_gamification_points_table.php.stub' => database_path('migrations/' . $timestamp . '_create_gamification_points_table.php'), |
||
16 | ], 'migrations'); |
||
17 | } |
||
18 | } |
||
19 | |||
25 |