Passed
Push — master ( a29a7e...12a432 )
by Mihail
08:06
created

install_user_table   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 39
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 2

3 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 12 1
A seed() 0 2 1
A down() 0 4 1
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_user_table.
8
 */
9
class install_user_table extends Migration implements MigrationInterface
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
        $this->getSchema()->create('users', function($table) {
18
            $table->increments('id');
19
            $table->string('login')->unique();
20
            $table->string('email')->unique();
21
            $table->string('password', 512);
22
            $table->tinyInteger('role_id')->default(2); // 1 = onlyRead(same as guest), 2 = user, 3 = moder, 4 = adm
23
            $table->string('approve_token', 128)->default(0);
24
            $table->timestamps();
25
        });
26
        parent::up();
27
    }
28
29
    /**
30
     * Seed created table via up() method with some data
31
     * @return void
32
     */
33
    public function seed()
34
    {
35
36
    }
37
38
    /**
39
     * Execute actions when migration is down
40
     * @return void
41
     */
42
    public function down()
43
    {
44
        $this->getSchema()->dropIfExists('users');
45
        parent::down();
46
    }
47
}