| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public function up() |
||
| 20 | { |
||
| 21 | Schema::create( self::IMAGES_TABLE , function (Blueprint $table) |
||
| 22 | { |
||
| 23 | $table->bigIncrements('id'); |
||
| 24 | $table->text('path'); |
||
| 25 | $table->text('filename'); |
||
| 26 | $table->string('type')->nullable()->default(NULL); |
||
| 27 | $table->boolean('processed')->nullable()->default(FALSE); |
||
| 28 | $table->text('thumbnails')->nullable()->default(NULL); |
||
| 29 | $table->text('metadata')->nullable()->default(NULL); |
||
| 30 | $table->timestampsTz(); |
||
| 31 | $table->softDeletes(); |
||
| 32 | }); |
||
| 45 |