Completed
Push — master ( 9abbc7...a687e5 )
by Fabrizio
03:03
created

CreateNotificationsTable::up()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
c 2
b 1
f 1
dl 0
loc 18
rs 9.4285
cc 1
eloc 14
nc 1
nop 0
1
<?php
2
3
use Illuminate\Database\Schema\Blueprint;
4
use Illuminate\Database\Migrations\Migration;
5
6
class CreateNotificationsTable extends Migration
7
{
8
    /**
9
     * Run the migrations.
10
     *
11
     * @return void
12
     */
13
    public function up()
14
    {
15
        Schema::create('notifications', function (Blueprint $table) {
16
            $table->increments('id');
17
            $table->bigInteger('from_id')->index()->unsigned();
18
            $table->string('from_type')->index()->nullable();
19
            $table->bigInteger('to_id')->index()->unsigned();
20
            $table->string('to_type')->index()->nullable();
21
            $table->integer('category_id')->index()->unsigned();
22
            $table->string('url');
23
            $table->string('extra')->nullable();
24
            $table->tinyInteger('read')->default(0);
25
            $table->timestamps();
26
27
            $table->foreign('category_id')->references('id')
28
                  ->on('notification_categories');
29
        });
30
    }
31
32
    /**
33
     * Reverse the migrations.
34
     *
35
     * @return void
36
     */
37
    public function down()
38
    {
39
        Schema::drop('notifications');
40
    }
41
}
42