Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | public function run() |
||
20 | { |
||
21 | $data = [ |
||
22 | [ |
||
23 | 'id' => 1, |
||
24 | 'category_order' => 1, |
||
25 | 'category' => 'Ontopic', |
||
26 | 'description' => '', |
||
27 | 'accession' => 0, |
||
28 | 'accession_new_thread' => 1, |
||
29 | 'accession_new_posting' => 1, |
||
30 | 'thread_count' => 0, |
||
31 | ], |
||
32 | ]; |
||
33 | |||
34 | $table = $this->table('categories'); |
||
35 | $table->insert($data)->save(); |
||
36 | } |
||
38 |