CreateRecentViewsTables::up()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 9
rs 10
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class CreateRecentViewsTables extends Migration
8
{
9
    public function up()
10
    {
11
        Schema::create(config('recently-viewed.persist_table'), function (Blueprint $table) {
12
            $table->bigIncrements('id');
13
            $table->morphs('viewer');
14
            // $table->uuidMorphs('viewer');
15
            $table->string('type');
16
            $table->text('views');
17
            $table->timestamps();
18
        });
19
    }
20
21
    /**
22
    * Reverse the migrations.
23
    */
24
    public function down()
25
    {
26
        Schema::dropIfExists(config('recently-viewed.persist_table'));
27
    }
28
}
29