increments('id'); $table->string('name'); $table->string('email', 50)->unique(); $table->string('mobile'); $table->string('password'); $table->tinyInteger('status')->default(false); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }