id(); $table->bigInteger('status_id')->unsigned()->index(); $table->bigInteger('profile_id')->unsigned()->index(); $table->string('original_scope')->nullable(); $table->json('metadata')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('status_archiveds'); } }