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

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

1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_feedbackanswer_table.
8
 */
9
class install_feedbackanswer_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('feedback_answers', function($table) {
18
            $table->increments('id');
19
            $table->integer('feedback_id')->unsigned();
20
            $table->string('name', 100);
21
            $table->string('email');
22
            $table->text('message');
23
            $table->boolean('is_admin')->default(false);
24
            $table->integer('user_id')->unsigned()->default(0);
25
            $table->string('ip', 64)->default('127.0.0.1'); // ipv6 & ipv4
26
            $table->timestamps();
27
        });
28
        parent::up();
29
    }
30
31
    /**
32
     * Seed created table via up() method with some data
33
     * @return void
34
     */
35
    public function seed()
36
    {
37
38
    }
39
40
    /**
41
     * Execute actions when migration is down
42
     * @return void
43
     */
44
    public function down()
45
    {
46
        $this->getSchema()->dropIfExists('feedback_answers');
47
        parent::down();
48
    }
49
}