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

install_profile_table   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A seed() 0 2 1
A up() 0 17 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_profile_table.
8
 */
9
class install_profile_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('profiles', function($table) {
18
            $table->increments('id');
19
            $table->integer('user_id')->unsigned()->unique();
20
            $table->string('nick')->nullable();
21
            $table->tinyInteger('sex')->default(0);
22
            $table->date('birthday')->nullable();
23
            $table->string('city')->nullable();
24
            $table->string('hobby')->nullable();
25
            $table->integer('rating')->default(0);
26
            $table->string('phone')->nullable();
27
            $table->string('url')->nullable();
28
            $table->text('custom_data')->nullable();
29
            $table->timestamps();
30
        });
31
        parent::up();
32
    }
33
34
    /**
35
     * Seed created table via up() method with some data
36
     * @return void
37
     */
38
    public function seed()
39
    {
40
41
    }
42
43
    /**
44
     * Execute actions when migration is down
45
     * @return void
46
     */
47
    public function down()
48
    {
49
        $this->getSchema()->dropIfExists('profiles');
50
        parent::down();
51
    }
52
}