id(); $table->bigInteger('client_id', false, true)->unique()->nullable(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('profile_picture')->nullable(); $table->rememberToken(); $table->timestamps(); $table->softDeletes(); $table->index(['client_id']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };