Completed
Push — master ( fb8886...624979 )
by Matthew
9s
created

CreateProPlayers   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 17
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 14 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class CreateProPlayers extends AbstractMigration
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
6
{
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