Code Duplication    Length = 26-26 lines in 2 locations

database/migrations/2017_05_13_000000_create_fields_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class CreateFieldsTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::create('fields', function (Blueprint $table) {
17
            $table->increments('id');
18
            $table->string('name');
19
            $table->timestamps();
20
        });
21
    }
22
23
    /**
24
     * Reverse the migrations.
25
     *
26
     * @return void
27
     */
28
    public function down()
29
    {
30
        Schema::dropIfExists('fields');
31
    }
32
}
33

database/migrations/2017_05_13_000000_create_products_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class CreateProductsTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::create('products', function (Blueprint $table) {
17
            $table->increments('id');
18
            $table->string('name');
19
            $table->timestamps();
20
        });
21
    }
22
23
    /**
24
     * Reverse the migrations.
25
     *
26
     * @return void
27
     */
28
    public function down()
29
    {
30
        Schema::dropIfExists('products');
31
    }
32
}
33