Completed
Push — version-4 ( d6d949...f39f28 )
by
unknown
05:32
created

CreateNotificationsTable   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 1
Bugs 1 Features 0
Metric Value
dl 0
loc 36
rs 10
c 1
b 1
f 0
wmc 2
lcom 0
cbo 2
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