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

CreateUsers   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 CreateUsers 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
        $users = $this->table('users');
10
        //Id column automatically created by Phinx
11
        $users->addColumn('enabled', 'boolean', ['limit' => 1, 'default' => 0])
12
                ->addColumn('email', 'string', ['limit' => 255])
13
                ->addColumn('password', 'string', ['limit' => 255])
14
                ->addColumn('salt', 'string', ['limit' => 16])
15
                ->addColumn('name', 'string', ['limit' => 100])
16
                ->addColumn('roles', 'string', ['limit' => 255])
17
                ->addColumn('verificiationKey', 'string', ['limit' => 16, 'null' => true, 'default' => null])
18
                ->addColumn('creationTime', 'datetime')
19
                ->addIndex('email', ['unique' => true, 'name' => 'unique_email'])
20
                ->create();
21
    }
22
}
23