Test Setup Failed
Pull Request — master (#42)
by Matthew
02:49
created

CreateTrades   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A change() 0 15 1
1
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class CreateTrades 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
        $trades = $this->table('trades', ['id' => 'trade_id']);
10
        
11
        $trades->addColumn('draft_id', 'integer', ['limit' => 11, 'signed' => false])
12
                ->addColumn('manager1_id', 'integer', ['limit' => 11, 'signed' => false])
13
                ->addColumn('manager2_id', 'integer', ['limit' => 11, 'signed' => false])
14
                ->addColumn('trade_time', 'datetime', ['null' => true])
15
                ->addColumn('trade_round', 'integer', ['limit' => 5])
16
                ->addIndex('manager1_id', ['name' => 'manager1_idx'])
17
                ->addIndex('manager2_id', ['name' => 'manager2_idx'])
18
                ->addIndex('draft_id', ['name' => 'draft_idx'])
19
                ->create();
20
21
    }
22
}
23