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

AddSiteStructureTable   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1
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