id(); $table->unsignedBigInteger('profile_id'); $table->string('acct')->nullable(); $table->unsignedBigInteger('followers_count')->default(0); $table->unsignedBigInteger('target_profile_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('profile_migrations'); } };