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

install_usernotification_table::up()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13
Code Lines 10

Duplication

Lines 13
Ratio 100 %

Importance

Changes 0
Metric Value
cc 1
eloc 10
nc 1
nop 0
dl 13
loc 13
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_usernotification_table.
8
 */
9
class install_usernotification_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_notifications', function($table) {
18
            $table->increments('id');
19
            $table->string('user_id');
20
            $table->string('msg', 2048);
21
            $table->string('uri', 2048);
22
            $table->text('vars')->nullable();
23
            $table->boolean('readed')->default(false);
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('user_notifications');
45
        parent::down();
46
    }
47
}