Code Duplication    Length = 9-9 lines in 3 locations

database/migrations/2018_12_02_051738_create_metrics_analysers_tables.php 3 locations

@@ 38-46 (lines=9) @@
35
         */
36
        
37
        Schema::create(
38
            'metrics', function (Blueprint $table) {
39
                $table->engine = 'InnoDB';
40
                $table->increments('id')->unsigned();
41
                $table->longText('text')->nullable();
42
                // $table->string('tatuageable_id');
43
                // $table->string('tatuageable_type', 255);
44
                $table->timestamps();
45
                $table->softDeletes();
46
            }
47
        );
48
49
        Schema::create(
@@ 50-58 (lines=9) @@
47
        );
48
49
        Schema::create(
50
            'metric_analyses', function (Blueprint $table) {
51
                $table->engine = 'InnoDB';
52
                $table->increments('id')->unsigned();
53
                $table->longText('text')->nullable();
54
                // $table->string('tatuageable_id');
55
                // $table->string('tatuageable_type', 255);
56
                $table->timestamps();
57
                $table->softDeletes();
58
            }
59
        );
60
        
61
        Schema::create(
@@ 62-70 (lines=9) @@
59
        );
60
        
61
        Schema::create(
62
            'metric_analyse_results', function (Blueprint $table) {
63
                $table->engine = 'InnoDB';
64
                $table->increments('id')->unsigned();
65
                $table->longText('text')->nullable();
66
                // $table->string('tatuageable_id');
67
                // $table->string('tatuageable_type', 255);
68
                $table->timestamps();
69
                $table->softDeletes();
70
            }
71
        );
72
        // ^ array:2 [
73
        //     "Targets" => array:2 [