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

install_message_table-2016-12-04-15-33-29.php (1 issue)

PSR1 classes have a namespace declaration.

Coding Style Compatibility Minor
1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_message_table.
8
 */
9
class install_message_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('messages', function($table) {
18
            $table->bigIncrements('id');
19
            $table->integer('target_id')->unsigned();
20
            $table->integer('sender_id')->unsigned();
21
            $table->text('message');
22
            $table->boolean('readed')->default(false);
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('messages');
44
        parent::down();
45
    }
46
}