Completed
Push — master ( 5c6350...61c78a )
by Nicolas
14:48 queued 11:44
created

CreateTagTagTranslationsTable::up()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 14
ccs 11
cts 11
cp 1
rs 9.4285
cc 1
eloc 10
nc 1
nop 0
crap 1
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class CreateTagTagTranslationsTable extends Migration
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16 10
        Schema::create('tag__tag_translations', function (Blueprint $table) {
0 ignored issues
show
Bug introduced by
The method create() does not exist on Illuminate\Support\Facades\Schema. Did you maybe mean createFreshMockInstance()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
17 10
            $table->engine = 'InnoDB';
18 10
            $table->increments('id');
19 10
            $table->string('slug');
20 10
            $table->string('name');
21
22 10
            $table->integer('tag_id')->unsigned();
23 10
            $table->string('locale')->index();
24 10
            $table->unique(['tag_id', 'locale']);
25 10
            $table->foreign('tag_id')->references('id')->on('tag__tags')->onDelete('cascade');
26 10
        });
27 10
    }
28
29
    /**
30
     * Reverse the migrations.
31
     *
32
     * @return void
33
     */
34 10
    public function down()
35
    {
36 10
        Schema::drop('tag__tag_translations');
37 10
    }
38
}
39