bigIncrements('id');
$table->uuid('uuid')->nullable();
$table->string('email')->unique();
$table->string('password')->nullable();
$table->string('activation_token',64)->nullable();
$table->string('status',25)->nullable();
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}