Passed
Push — master ( 209004...29c5b8 )
by Christopher
01:22
created

CreateTriadevElasticsearchMigrationTable   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 9
dl 0
loc 28
c 0
b 0
f 0
rs 10
1
<?php
2
3
use Illuminate\Database\Migrations\Migration;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class CreateTriadevElasticsearchMigrationTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::create('triadev_elasticsearch_migration', function (Blueprint $table) {
17
            $table->bigIncrements('id');
18
            $table->string('migration');
19
            $table->integer('status')->default(
20
                \Triadev\EsMigration\Business\Mapper\MigrationStatus::MIGRATION_STATUS_WAIT
21
            );
22
            $table->text('error')->nullable();
23
            $table->timestamps();
24
        });
25
    }
26
27
    /**
28
     * Reverse the migrations.
29
     *
30
     * @return void
31
     */
32
    public function down()
33
    {
34
        Schema::drop('triadev_elasticsearch_migration');
35
    }
36
}
37