Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
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 | }); |
||
29 |