id(); $table->string('objectguid')->nullable(); // $table->string('name'); $table->string('username'); $table->string('password'); $table->rememberToken(); $table->timestamps(); $table->bigInteger("role_id")->unsigned()->default(1); $table->foreign('role_id')->references("id")->on("roles"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }