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

CreateUsers::change()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 15
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Importance

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