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

CreateTaggedTable::up()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 11
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 9
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 11
rs 9.9666
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