Passed
Push — master ( ada027...02930d )
by Philippe
02:54
created

AddSiteStructureTable::up()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 0
dl 0
loc 6
rs 10
c 0
b 0
f 0
1
<?php
2
3
use Illuminate\Support\Facades\Schema;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class AddSiteStructureTable extends Migration
8
{
9
    public function up()
10
    {
11
        Schema::create('site_structure', function (Blueprint $table) {
12
            $table->increments('id');
13
            $table->integer('parent_id')->nullable();
14
            $table->string('reference')->unique();
15
        });
16
    }
17
}
18