bigIncrements('id'); $table->bigInteger('profile_id')->unsigned()->unique()->index(); $table->json('sponsors')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('profile_sponsors'); } }