| Conditions | 1 |
| Paths | 1 |
| Total Lines | 22 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('media', function (Blueprint $table) { |
||
| 17 | $table->bigIncrements('id'); |
||
| 18 | |||
| 19 | $table->morphs('model'); |
||
| 20 | $table->uuid('uuid')->nullable(); |
||
| 21 | $table->string('collection_name'); |
||
| 22 | $table->string('name'); |
||
| 23 | $table->string('file_name'); |
||
| 24 | $table->string('mime_type')->nullable(); |
||
| 25 | $table->string('disk'); |
||
| 26 | $table->string('conversions_disk')->nullable(); |
||
| 27 | $table->unsignedBigInteger('size'); |
||
| 28 | $table->json('manipulations'); |
||
| 29 | $table->json('custom_properties'); |
||
| 30 | $table->json('responsive_images'); |
||
| 31 | $table->unsignedInteger('order_column')->nullable(); |
||
| 32 | |||
| 33 | $table->nullableTimestamps(); |
||
| 34 | }); |
||
| 35 | } |
||
| 36 | |||
| 47 |