Passed
Push — dependabot/npm_and_yarn/string... ( b56eb5...bc569b )
by
unknown
45:46 queued 33s
created

CreateSettingsTable   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 2
1
<?php
2
3
use Illuminate\Support\Facades\Schema;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class CreateSettingsTable extends Migration
8
{
9
    public function up()
10
    {
11
        Schema::create('settings', function (Blueprint $table) {
12
            $table->increments('id');
13
            $table->string('key')->index();
14
            $table->text('value');
15
        });
16
    }
17
18
    public function down()
19
    {
20
        Schema::dropIfExists('settings');
21
    }
22
}
23