Passed
Branch master (182172)
by Matthew
04:03 queued 01:23
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
<?php
2
3
use Phinx\Migration\AbstractMigration;
4
5
class CreateUsers extends AbstractMigration
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