id(); $table->string('name'); $table->string('username')->unique(); $table->string('password'); $table->boolean('status')->default(true); // true(active) false(not active) $table->foreignId('role_id')->constrained(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };