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

CreateManagers   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 10 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
use Phinx\Db\Adapter\MysqlAdapter;
5
6
class CreateManagers 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...
7
{
8
    public function change()
9
    {
10
        $managers = $this->table('managers', ['id' => 'manager_id']);
11
        
12
        $managers->addColumn('draft_id', 'integer', ['limit' => 11, 'default' => 0])
13
                ->addColumn('manager_name', 'text')
14
                ->addColumn('draft_order', 'integer', ['limit' => MysqlAdapter::INT_TINY, 'signed' => false, 'default' => 0])
15
                ->addIndex(['draft_id'], ['name' => 'draft_idx'])
16
                ->create();
17
    }
18
}
19