Completed
Push — master ( 3f89d7...f790e9 )
by Mike
30:28 queued 29:00
created

CreateStores   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 13
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A up() 0 10 1
1
<?php
2
3
use Illuminate\Database\Schema\Blueprint;
4
use Illuminate\Database\Migrations\Migration;
5
6
class CreateStores extends Migration
7
{
8
    public function up()
9
    {
10
        Schema::create('stores', function (Blueprint $table) {
11
            $table->increments('id');
12
            $table->timestamps();
13
14
            $table->text('address');
15
            $table->text('name');
16
        });
17
    }
18
}
19