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

install_session_table-2016-12-04-15-34-04.php (1 issue)

1
<?php
2
3
use Ffcms\Core\Migrations\MigrationInterface;
4
use Ffcms\Core\Migrations\Migration;
5
6
/**
7
 * Class install_session_table.
8
 */
9
class install_session_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('sessions', function($table) {
18
            $table->string('sess_id', 128)->index()->primary()  ;
19
            $table->text('sess_data');
20
            $table->string('sess_lifetime', 16); // shutout to laravel, if i make it like "integer" it automaticlly add "primary" key for it, hate this!!!
21
            $table->string('sess_time', 16);
22
            $table->timestamps();
23
        });
24
        parent::up();
25
    }
26
27
    /**
28
     * Seed created table via up() method with some data
29
     * @return void
30
     */
31
    public function seed()
32
    {
33
34
    }
35
36
    /**
37
     * Execute actions when migration is down
38
     * @return void
39
     */
40
    public function down()
41
    {
42
        $this->getSchema()->dropIfExists('sessions');
43
        parent::down();
44
    }
45
}