Test Failed
Push — master ( e3c39f...fe570d )
by Mihail
07:20
created

install_commentpost_table::seed()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
nc 1
nop 0
dl 0
loc 1
rs 10
c 1
b 0
f 0
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_commentpost_table.
8
 */
9
class install_commentpost_table extends Migration implements MigrationInterface
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
10
{
11
    /**
12
     * Execute actions when migration is up
13
     * @return void
14
     */
15
    public function up()
16
    {
17
        $this->getSchema()->create('comment_posts', function($table) {
18
            $table->increments('id');
19
            $table->string('app_name');
20
            $table->integer('app_relation_id')->unsigned();
21
            $table->integer('user_id')->unsigned();
22
            $table->string('guest_name', 100);
23
            $table->text('message');
24
            $table->string('lang', 32)->default('en');
25
            $table->string('ip', 64)->default('127.0.0.1'); // ipv4 and ipv6 (32 chars + 7 digits is max)
26
            $table->boolean('moderate')->default(false);
27
            $table->timestamps();
28
        });
29
        parent::up();
30
    }
31
32
    /**
33
     * Seed created table via up() method with some data
34
     * @return void
35
     */
36
    public function seed() {}
37
38
    /**
39
     * Execute actions when migration is down
40
     * @return void
41
     */
42
    public function down()
43
    {
44
        $this->getSchema()->dropIfExists('comment_posts');
45
        parent::down();
46
    }
47
}