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

install_userlog_table::seed()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 2
rs 10
c 1
b 0
f 0
cc 1
eloc 0
nc 1
nop 0
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_userlog_table.
8
 */
9
class install_userlog_table extends Migration implements MigrationInterface
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
        // @todo: develop migration up features
18
        $this->getSchema()->create('user_logs', function($table) {
19
            $table->increments('id');
20
            $table->string('user_id');
21
            $table->string('type');
22
            $table->string('message', 2048);
23
            $table->timestamps();
24
        });
25
        parent::up();
26
    }
27
28
    /**
29
     * Seed created table via up() method with some data
30
     * @return void
31
     */
32
    public function seed()
33
    {
34
35
    }
36
37
    /**
38
     * Execute actions when migration is down
39
     * @return void
40
     */
41
    public function down()
42
    {
43
        $this->getSchema()->dropIfExists('user_logs');
44
        parent::down();
45
    }
46
}