Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 12 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
8 | View Code Duplication | public function run() |
|
9 | { |
||
10 | // Truncate the table each time. |
||
11 | DB::statement('SET FOREIGN_KEY_CHECKS=0;'); |
||
12 | DB::table('users')->truncate(); |
||
13 | DB::statement('SET FOREIGN_KEY_CHECKS=1;'); |
||
14 | |||
15 | $users = config('users.users'); |
||
16 | |||
17 | // Add any data to the table. |
||
18 | DB::table('users')->insert($users); |
||
19 | } |
||
20 | } |
||
21 |