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

CreateProPlayers::change()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 11
nc 1
nop 0
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