increments('id'); $table->morphs('model'); $table->string('collection_name'); $table->string('name'); $table->string('file_name'); $table->string('disk'); $table->unsignedInteger('size'); $table->text('manipulations'); $table->text('custom_properties'); $table->unsignedInteger('order_column')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down() { Schema::drop('media'); } }