GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — rewrite-laravel ( 96dff9...f203d9 )
by Oliver
11:47
created

CreateMediaTable::down()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
use Illuminate\Support\Facades\Schema;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class CreateMediaTable extends Migration
8
{
9
    /**
10
     * Run the migrations.
11
     */
12
    public function up()
13
    {
14
        Schema::create('media', function (Blueprint $table) {
0 ignored issues
show
Bug introduced by
The method create() does not exist on Illuminate\Support\Facades\Schema. Did you maybe mean createFreshMockInstance()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
15
            $table->increments('id');
16
            $table->morphs('model');
17
            $table->string('collection_name');
18
            $table->string('name');
19
            $table->string('file_name');
20
            $table->string('disk');
21
            $table->unsignedInteger('size');
22
            $table->text('manipulations');
23
            $table->text('custom_properties');
24
            $table->unsignedInteger('order_column')->nullable();
25
            $table->nullableTimestamps();
26
        });
27
    }
28
    /**
29
     * Reverse the migrations.
30
     */
31
    public function down()
32
    {
33
        Schema::drop('media');
34
    }
35
}
36