We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | \Schema::create('images', function (Blueprint $table) { |
||
| 16 | $table->increments('id'); |
||
| 17 | $table->string('filename')->unique(); |
||
| 18 | $table->string('extension'); |
||
| 19 | $table->string('directory'); |
||
| 20 | $table->integer('size'); |
||
| 21 | $table->string('title')->nullable(); |
||
| 22 | $table->string('description')->nullable(); |
||
| 23 | $table->tinyInteger('published')->nullable(); |
||
| 24 | $table->unsignedInteger('uploader_id'); |
||
| 25 | $table->unsignedInteger('modifier_id')->nullable(); |
||
| 26 | $table->softDeletes(); |
||
| 27 | $table->timestamps(); |
||
| 28 | }); |
||
| 41 |