Code Duplication    Length = 26-26 lines in 2 locations

database/migrations/2020_04_04_000001_create_priorities_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class CreatePrioritiesTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::create('priorities', function (Blueprint $table) {
17
            $table->bigIncrements('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('priorities');
31
    }
32
}
33

database/migrations/2020_04_04_000002_create_statuses_table.php 1 location

@@ 7-32 (lines=26) @@
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Support\Facades\Schema;
6
7
class CreateStatusesTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     *
12
     * @return void
13
     */
14
    public function up()
15
    {
16
        Schema::create('statuses', function (Blueprint $table) {
17
            $table->bigIncrements('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('statuses');
31
    }
32
}
33