id(); $table->unsignedInteger('user_id')->unique()->index(); $table->bigInteger('profile_id')->unsigned()->unique()->index(); $table->json('common')->nullable(); $table->json('custom')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('user_app_settings'); } };