Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function change() |
||
29 | { |
||
30 | $table = $this->table('redirects'); |
||
31 | $table->addColumn('hash', 'string') |
||
32 | ->addColumn('redirect_to', 'text') |
||
33 | ->addColumn('count', 'integer', ['default' => 0]) |
||
34 | ->addColumn('created_at', 'datetime') |
||
35 | ->addColumn('updated_at', 'datetime') |
||
36 | ->create(); |
||
37 | } |
||
39 |