Passed
Branch master (549a47)
by Robert
02:36
created

CreateTaggedTable::down()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
use Illuminate\Database\Schema\Blueprint;
5
6
return new class extends Migration
7
{
8
    public function up()
9
    {
10
        Schema::create('tagging_tagged', function (Blueprint $table) {
11
            $table->increments('id');
12
            if (config('tagging.primary_keys_type') == 'string') {
13
                $table->string('taggable_id', 36)->index();
14
            } else {
15
                $table->integer('taggable_id')->unsigned()->index();
16
            }
17
            $table->string('taggable_type', 125)->index();
18
            $table->string('tag_name', 125);
19
            $table->string('tag_slug', 125)->index();
20
        });
21
    }
22
23
    public function down()
24
    {
25
        Schema::drop('tagging_tagged');
26
    }
27
};
28