CreateTrackerSqlQueryBindingsTable::migrateDown()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
use PragmaRX\Tracker\Support\Migration;
4
5
class CreateTrackerSqlQueryBindingsTable extends Migration
6
{
7
    /**
8
     * Table related to this migration.
9
     *
10
     * @var string
11
     */
12
    private $table = 'tracker_sql_query_bindings';
13
14
    /**
15
     * Run the migrations.
16
     *
17
     * @return void
18
     */
19
    public function migrateUp()
20
    {
21
        $this->builder->create(
22
            $this->table,
23
            function ($table) {
24
                $table->bigIncrements('id');
25
26
                $table->string('sha1', 40)->index();
27
                $table->text('serialized');
28
29
                $table->timestamps();
30
                $table->index('created_at');
31
                $table->index('updated_at');
32
            }
33
        );
34
    }
35
36
    /**
37
     * Reverse the migrations.
38
     *
39
     * @return void
40
     */
41
    public function migrateDown()
42
    {
43
        $this->drop($this->table);
44
    }
45
}
46