bigIncrements('id'); $table->bigInteger('collection_id')->unsigned()->index(); $table->unsignedInteger('order')->nullable(); $table->string('object_type')->default('post')->index(); $table->bigInteger('object_id')->unsigned()->index(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('collection_items'); } }