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

install_userrecovery_table   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 3
dl 0
loc 32
rs 10
c 2
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A up() 0 10 1
A down() 0 4 1
A seed() 0 1 1
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_userrecovery_table.
8
 */
9
class install_userrecovery_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('user_recoveries', function($table) {
18
            $table->increments('id');
19
            $table->integer('user_id')->unsigned();
20
            $table->string('token', 128)->nullable();
21
            $table->boolean('archive')->default(false);
22
            $table->timestamps();
23
        });
24
        parent::up();
25
    }
26
27
    /**
28
     * Seed created table via up() method with some data
29
     * @return void
30
     */
31
    public function seed() {}
32
33
    /**
34
     * Execute actions when migration is down
35
     * @return void
36
     */
37
    public function down()
38
    {
39
        $this->getSchema()->dropIfExists('user_recoveries');
40
        parent::down();
41
    }
42
}