Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function change() |
||
8 | { |
||
9 | $pro_players = $this->table('pro_players', ['id' => 'pro_player_id', 'engine' => 'MyISAM']); |
||
10 | |||
11 | $pro_players->addColumn('league', 'text') |
||
12 | ->addColumn('first_name', 'text') |
||
13 | ->addColumn('last_name', 'text') |
||
14 | ->addColumn('position', 'text') |
||
15 | ->addColumn('team', 'text') |
||
16 | ->addIndex('league', ['limit' => 4, 'name' => 'league_idx']) |
||
17 | ->addIndex('first_name', ['type' => 'fulltext', 'name' => 'firstname_idx']) |
||
18 | ->addIndex('last_name', ['type' => 'fulltext', 'name' => 'lastname_idx']) |
||
19 | ->create(); |
||
20 | } |
||
21 | } |
||
22 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.